├── .github └── workflows │ ├── main.yml │ └── publish.yml ├── .gitignore ├── .markdownlint.jsonc ├── Makefile ├── README.md ├── dictionary.txt ├── draft-ietf-ippm-responsiveness.md └── draft-ietf-ippm-responsiveness.xml /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/network-quality/draft-ietf-ippm-responsiveness/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/network-quality/draft-ietf-ippm-responsiveness/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/network-quality/draft-ietf-ippm-responsiveness/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/network-quality/draft-ietf-ippm-responsiveness/HEAD/.markdownlint.jsonc -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/network-quality/draft-ietf-ippm-responsiveness/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/network-quality/draft-ietf-ippm-responsiveness/HEAD/README.md -------------------------------------------------------------------------------- /dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/network-quality/draft-ietf-ippm-responsiveness/HEAD/dictionary.txt -------------------------------------------------------------------------------- /draft-ietf-ippm-responsiveness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/network-quality/draft-ietf-ippm-responsiveness/HEAD/draft-ietf-ippm-responsiveness.md -------------------------------------------------------------------------------- /draft-ietf-ippm-responsiveness.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/network-quality/draft-ietf-ippm-responsiveness/HEAD/draft-ietf-ippm-responsiveness.xml --------------------------------------------------------------------------------