Blame


1 ba353f35 2015-11-05 stephen.d /*
2 ba353f35 2015-11-05 stephen.d Package p9pnew implements a compliant 9P2000 client and server library for use
3 ba353f35 2015-11-05 stephen.d in modern, production Go services. This package differentiates itself in that
4 ba353f35 2015-11-05 stephen.d is has departed from the plan 9 implementation primitives and better follows
5 ba353f35 2015-11-05 stephen.d idiomatic Go style.
6 ba353f35 2015-11-05 stephen.d
7 ba353f35 2015-11-05 stephen.d Multiversion Support
8 ba353f35 2015-11-05 stephen.d
9 ba353f35 2015-11-05 stephen.d Currently, there is not multiversion support. The hooks and functionality are
10 ba353f35 2015-11-05 stephen.d in place to add multi-version support. Generally, the correct space to do this
11 ba353f35 2015-11-05 stephen.d is in the codec. Types, such as Dir, simply need to be extended to support the
12 ba353f35 2015-11-05 stephen.d possibility of extra fields.
13 ba353f35 2015-11-05 stephen.d */
14 ba353f35 2015-11-05 stephen.d package p9pnew