├── .gitignore ├── LICENSE ├── README.md ├── examples └── server │ ├── nss_http_server.py │ └── requirements.txt └── libnss_http ├── Makefile ├── nss_http-group.c ├── nss_http-passwd.c ├── nss_http-shadow.c ├── nss_http.c └── nss_http.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmjosack/nss_http/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmjosack/nss_http/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmjosack/nss_http/HEAD/README.md -------------------------------------------------------------------------------- /examples/server/nss_http_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmjosack/nss_http/HEAD/examples/server/nss_http_server.py -------------------------------------------------------------------------------- /examples/server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmjosack/nss_http/HEAD/examples/server/requirements.txt -------------------------------------------------------------------------------- /libnss_http/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmjosack/nss_http/HEAD/libnss_http/Makefile -------------------------------------------------------------------------------- /libnss_http/nss_http-group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmjosack/nss_http/HEAD/libnss_http/nss_http-group.c -------------------------------------------------------------------------------- /libnss_http/nss_http-passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmjosack/nss_http/HEAD/libnss_http/nss_http-passwd.c -------------------------------------------------------------------------------- /libnss_http/nss_http-shadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmjosack/nss_http/HEAD/libnss_http/nss_http-shadow.c -------------------------------------------------------------------------------- /libnss_http/nss_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmjosack/nss_http/HEAD/libnss_http/nss_http.c -------------------------------------------------------------------------------- /libnss_http/nss_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmjosack/nss_http/HEAD/libnss_http/nss_http.h --------------------------------------------------------------------------------