├── .gitignore ├── 9p.c ├── 9pfs.1 ├── 9pfs.c ├── 9pfs.h ├── LICENSE ├── Makefile ├── auth.h ├── fcall.h ├── lib ├── auth_getkey.c ├── auth_proxy.c ├── auth_rpc.c ├── convD2M.c ├── convM2D.c ├── convM2S.c ├── convS2M.c ├── read9pmsg.c ├── readn.c └── strecpy.c ├── libc.h ├── readme.md ├── util.c └── util.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.o -------------------------------------------------------------------------------- /9p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischief/9pfs/HEAD/9p.c -------------------------------------------------------------------------------- /9pfs.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischief/9pfs/HEAD/9pfs.1 -------------------------------------------------------------------------------- /9pfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischief/9pfs/HEAD/9pfs.c -------------------------------------------------------------------------------- /9pfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischief/9pfs/HEAD/9pfs.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischief/9pfs/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischief/9pfs/HEAD/Makefile -------------------------------------------------------------------------------- /auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischief/9pfs/HEAD/auth.h -------------------------------------------------------------------------------- /fcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischief/9pfs/HEAD/fcall.h -------------------------------------------------------------------------------- /lib/auth_getkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischief/9pfs/HEAD/lib/auth_getkey.c -------------------------------------------------------------------------------- /lib/auth_proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischief/9pfs/HEAD/lib/auth_proxy.c -------------------------------------------------------------------------------- /lib/auth_rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischief/9pfs/HEAD/lib/auth_rpc.c -------------------------------------------------------------------------------- /lib/convD2M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischief/9pfs/HEAD/lib/convD2M.c -------------------------------------------------------------------------------- /lib/convM2D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischief/9pfs/HEAD/lib/convM2D.c -------------------------------------------------------------------------------- /lib/convM2S.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischief/9pfs/HEAD/lib/convM2S.c -------------------------------------------------------------------------------- /lib/convS2M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischief/9pfs/HEAD/lib/convS2M.c -------------------------------------------------------------------------------- /lib/read9pmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischief/9pfs/HEAD/lib/read9pmsg.c -------------------------------------------------------------------------------- /lib/readn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischief/9pfs/HEAD/lib/readn.c -------------------------------------------------------------------------------- /lib/strecpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischief/9pfs/HEAD/lib/strecpy.c -------------------------------------------------------------------------------- /libc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischief/9pfs/HEAD/libc.h -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischief/9pfs/HEAD/readme.md -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischief/9pfs/HEAD/util.c -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischief/9pfs/HEAD/util.h --------------------------------------------------------------------------------