blob: c4961217a535c95c80210ac9fd463bcc49cb56d8 [file] [log] [blame]
rsc058b0112005-01-03 06:40:20 +00001.TH VERSION 9P
2.SH NAME
3version \- negotiate protocol version
4.SH SYNOPSIS
5.ta \w'\fLTversion 'u
6.IR size [4]
7.B Tversion
8.IR tag [2]
9.IR msize [4]
10.IR version [ s ]
11.br
12.IR size [4]
13.B Rversion
14.IR tag [2]
15.IR msize [4]
16.IR version [ s ]
17.SH DESCRIPTION
18The
19.B version
20request negotiates the protocol version and message size
21to be used on the connection and initializes the connection for I/O.
22.B Tversion
23must be the first message sent on the 9P connection,
24and the client cannot issue any further requests until it has received the
25.B Rversion
26reply.
27The
28.I tag
29should be
30.B NOTAG
31(value
32.BR (ushort)~0 )
33for a
34.B version
35message.
36.PP
37The client suggests a maximum message size,
38.BR msize ,
39that is the maximum length, in bytes,
40it will ever generate or expect to receive in a single 9P message.
41This count includes all 9P protocol data, starting from the
42.B size
43field and extending through the message,
44but excludes enveloping transport protocols.
45The server responds with its own maximum,
46.BR msize ,
47which must be less than or equal to the client's value.
48Thenceforth, both sides of the connection must honor this limit.
49.PP
50The
51.B version
52string identifies the level of the protocol.
53The string must always begin with the two characters
54.RB `` 9P ''.
55If the server does not understand the client's version string,
56it should respond with an
57.B Rversion
58message (not
59.BR Rerror )
60with the
61.B version
62string the 7 characters
63.RB `` unknown ''.
64.PP
65The server may respond with the client's version string,
66or a version string identifying
67an earlier defined protocol version.
68Currently, the only defined version is the 6 characters
69.RB `` 9P2000 ''.
70Version strings are defined such that, if the client string contains
71one or more period characters, the initial substring up to but not including
72any single period in the version string defines a version of the protocol.
73After stripping any such period-separated suffix, the server is allowed to respond
74with a string of the form
75.BI 9P nnnn\f1,
76where
77.I nnnn
78is less than or equal to the digits sent by the client.
79.PP
80The client and server will use the protocol version defined by the
81server's response for all subsequent communication on the connection.
82.PP
83A successful
84.B version
85request initializes the connection.
86All outstanding I/O on the connection is aborted; all active fids are freed (`clunked') automatically.
87The set of messages between
88.B version
89requests is called a
90.IR session .
91.SH ENTRY POINTS
92.I Fsversion
93(see
94.IR 9pclient (3))
95generates
96.B version
97messages;
98it is called automatically by
99.IR fsmount .