chiark / gitweb /
Bias up recently added tracks. See new_bias and new_bias_age in
[disorder] / doc / disorder_protocol.5.in
CommitLineData
460b9539 1.\"
964e027d 2.\" Copyright (C) 2004-2008 Richard Kettlewell
460b9539 3.\"
4.\" This program is free software; you can redistribute it and/or modify
5.\" it under the terms of the GNU General Public License as published by
6.\" the Free Software Foundation; either version 2 of the License, or
7.\" (at your option) any later version.
8.\"
9.\" This program is distributed in the hope that it will be useful, but
10.\" WITHOUT ANY WARRANTY; without even the implied warranty of
11.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12.\" General Public License for more details.
13.\"
14.\" You should have received a copy of the GNU General Public License
15.\" along with this program; if not, write to the Free Software
16.\" Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
17.\" USA
18.\"
19.TH disorder_protocol 5
20.SH NAME
21disorder_protocol \- DisOrder communication protocol
22.SH DESCRIPTION
23The DisOrder client and server communicate via the protocol described
24in this man page.
25.PP
c0c23a60
RK
26The protocol is liable to change without notice.
27You are recommended to check the implementation before believing this document.
460b9539 28.SH "GENERAL SYNTAX"
c0c23a60
RK
29Everything is encoded using UTF-8.
30See
f9635e06
RK
31.B "CHARACTER ENCODING"
32below for more detail on character encoding issues.
460b9539 33.PP
f9635e06
RK
34Commands and responses consist of a line perhaps followed (depending on the
35command or response) by a body.
460b9539 36.PP
37The line syntax is the same as described in \fBdisorder_config\fR(5) except
38that comments are prohibited.
39.PP
40Bodies borrow their syntax from RFC821; they consist of zero or more ordinary
41lines, with any initial full stop doubled up, and are terminated by a line
42consisting of a full stop and a line feed.
43.SH COMMANDS
44Commands always have a command name as the first field of the line; responses
c0c23a60
RK
45always have a 3-digit response code as the first field.
46See below for more details about this field.
460b9539 47.PP
48All commands require the connection to have been already authenticated unless
c0c23a60
RK
49stated otherwise.
50If not stated otherwise, the \fBread\fR right is sufficient to execute
51the command.
460b9539 52.PP
53Neither commands nor responses have a body unless stated otherwise.
54.TP
0f55e905 55.B adduser \fIUSERNAME PASSWORD \fR[\fIRIGHTS\fR]
c0c23a60
RK
56Create a new user with the given username and password.
57The new user's rights list can be specified; if it is not
58then the \fBdefault_rights\fR setting applies instead.
59Requires the \fBadmin\fR right, and only works on local
0f55e905 60connections.
eb5dc014 61.TP
460b9539 62.B allfiles \fIDIRECTORY\fR [\fIREGEXP\fR]
5818980a 63List all the files and directories in \fIDIRECTORY\fR in a response body.
460b9539 64If \fIREGEXP\fR is present only matching files and directories are returned.
65.TP
ba39faf6 66.B confirm \fICONFIRMATION
c0c23a60
RK
67Confirm user registration.
68\fICONFIRMATION\fR is as returned from \fBregister\fR below.
69This command can be used without logging in.
ba39faf6 70.TP
eb5dc014 71.B cookie \fICOOKIE
0d350ff0 72Log a user back in using a cookie created with \fBmake\-cookie\fR.
c0c23a60 73The response contains the username.
eb5dc014
RK
74.TP
75.B deluser \fIUSERNAME
c0c23a60
RK
76Delete the named user.
77Requires the \fBadmin\fR right, and only works on local connections.
460b9539 78.TP
79.B dirs \fIDIRECTORY\fR [\fIREGEXP\fR]
5818980a 80List all the directories in \fIDIRECTORY\fR in a response body.
460b9539 81If \fIREGEXP\fR is present only matching directories are returned.
82.TP
83.B disable \fR[\fBnow\fR]
c0c23a60
RK
84Disable further playing.
85If the optional \fBnow\fR argument is present then the current track
86is stopped.
87Requires the \fBglobal prefs\fR right.
eb5dc014
RK
88.TP
89.B edituser \fIUSERNAME PROPERTY VALUE
c0c23a60
RK
90Set a user property.
91With the \fBadmin\fR right any username and property may be specified.
92Otherwise the \fBuserinfo\fR right is required and only the
eb5dc014 93\fBemail\fR and \fBpassword\fR properties may be set.
0517868c
RK
94.IP
95User properties are syntax-checked before setting. For instance \fBemail\fR
96must contain an "@" sign or you will get an error. (Setting an empty value for
97\fBemail\fR is allowed and removes the property.)
460b9539 98.TP
99.B enable
c0c23a60
RK
100Re-enable further playing, and is the opposite of \fBdisable\fR.
101Requires the \fBglobal prefs\fR right.
460b9539 102.TP
103.B enabled
c0c23a60
RK
104Report whether playing is enabled.
105The second field of the response line will be \fByes\fR or \fBno\fR.
460b9539 106.TP
107.B exists \fITRACK\fR
c0c23a60
RK
108Report whether the named track exists.
109The second field of the response line will be \fByes\fR or \fBno\fR.
460b9539 110.TP
111.B files \fIDIRECTORY\fR [\fIREGEXP\fR]
5818980a 112List all the files in \fIDIRECTORY\fR in a response body.
460b9539 113If \fIREGEXP\fR is present only matching files are returned.
114.TP
115.B get \fITRACK\fR \fIPREF\fR
c0c23a60
RK
116Getsa preference value.
117On success the second field of the response line will have the value.
fb1bc1f5
RK
118.IP
119If the track or preference do not exist then the response code is 555.
460b9539 120.TP
0d350ff0 121.B get\-global \fIKEY\fR
460b9539 122Get a global preference.
fb1bc1f5
RK
123.IP
124If the preference does not exist then the response code is 555.
460b9539 125.TP
126.B length \fITRACK\fR
c0c23a60
RK
127Get the length of the track in seconds.
128On success the second field of the response line will have the value.
460b9539 129.TP
130.B log
c0c23a60
RK
131Send event log messages in a response body.
132The command will never terminate.
133Any further data sent to the server will be discarded (explicitly;
134i.e. it will not accumulate in a buffer somewhere).
460b9539 135.IP
136See \fBEVENT LOG\fR below for more details.
137.TP
0d350ff0 138.B make\-cookie
eb5dc014
RK
139Returns an opaque string that can be used by the \fBcookie\fR command to log
140this user back in on another connection (until the cookie expires).
141.TP
460b9539 142.B move \fITRACK\fR \fIDELTA\fR
c0c23a60
RK
143Move a track in the queue.
144The track may be identified by ID (preferred) or name (which might cause
145confusion if it's there twice).
146\fIDELTA\fR should be an negative or positive integer and indicates how
147many steps towards the head of the queue the track should be moved.
eb5dc014
RK
148.IP
149Requires one of the \fBmove mine\fR, \fBmove random\fR or \fBmove any\fR rights
150depending on how the track came to be added to the queue.
460b9539 151.TP
152.B moveafter \fITARGET\fR \fIID\fR ...
c0c23a60
RK
153Move all the tracks in the \fIID\fR list after ID \fITARGET\fR.
154If \fITARGET\fR is the empty string then the listed tracks are put
155at the head of the queue.
156If \fITARGET\fR is listed in the ID list then the tracks are moved
460b9539 157to just after the first non-listed track before it, or to the head if there is
158no such track.
eb5dc014
RK
159.IP
160Requires one of the \fBmove mine\fR, \fBmove random\fR or \fBmove any\fR rights
161depending on how the tracks came to be added to the queue.
460b9539 162.TP
2a10b70b 163.B new \fR[\fIMAX\fR]
c0c23a60
RK
164Send the most recently added \fIMAX\fR tracks in a response body.
165If the argument is ommitted, the \fBnew_max\fR most recent tracks are
166listed (see \fBdisorder_config\fR(5)).
2a10b70b 167.TP
7858930d 168.B nop
c0c23a60
RK
169Do nothing.
170Used by
7858930d 171.BR disobedience (1)
c0c23a60
RK
172as a keepalive measure.
173This command does not require authentication.
7858930d 174.TP
460b9539 175.B part \fITRACK\fR \fICONTEXT\fI \fIPART\fR
c0c23a60
RK
176Get a track name part.
177Returns an empty string if a name part cannot be constructed.
460b9539 178.IP
179.I CONTEXT
180is one of
181.B sort
182or
183.B display
184and
185.I PART
186is usually one of
187.BR artist ,
188.B album
189or
190.BR title .
191.TP
192.B pause
c0c23a60
RK
193Pause the current track.
194Requires the \fBpause\fR right.
460b9539 195.TP
196.B play \fITRACK\fR
c0c23a60
RK
197Add a track to the queue.
198The response contains the queue ID of the track.
eb5dc014 199Requires the \fBplay\fR right.
460b9539 200.TP
201.B playing
5818980a 202Report what track is playing.
460b9539 203.IP
204If the response is \fB252\fR then the rest of the response line consists of
205track information (see below).
206.IP
207If the response is \fB259\fR then nothing is playing.
208.TP
209.B prefs \fBTRACK\fR
5818980a 210Send back the preferences for \fITRACK\fR in a response body.
460b9539 211Each line of the response has the usual line syntax, the first field being the
212name of the pref and the second the value.
213.TP
214.B queue
5818980a 215Send back the current queue in a response body, one track to a line, the track
c0c23a60
RK
216at the head of the queue (i.e. next to be be played) first.
217See below for the track information syntax.
460b9539 218.TP
0d350ff0 219.B random\-disable
c0c23a60
RK
220Disable random play (but don't stop the current track).
221Requires the \fBglobal prefs\fR right.
460b9539 222.TP
0d350ff0 223.B random\-enable
c0c23a60
RK
224Enable random play.
225Requires the \fBglobal prefs\fR right.
460b9539 226.TP
0d350ff0 227.B random\-enabled
c0c23a60
RK
228Report whether random play is enabled.
229The second field of the response line will be \fByes\fR or \fBno\fR.
460b9539 230.TP
231.B recent
5818980a 232Send back the current recently-played list in a response body, one track to a
c0c23a60
RK
233line, the track most recently played last.
234See below for the track information syntax.
460b9539 235.TP
236.B reconfigure
c0c23a60
RK
237Request that DisOrder reconfigure itself.
238Requires the \fBadmin\fR right.
460b9539 239.TP
90ad6c6e 240.B register \fIUSERNAME PASSWORD EMAIL
c0c23a60
RK
241Register a new user.
242Requires the \fBregister\fR right.
243The result contains a confirmation string; the user will be be able
244to log in until this has been presented back to the server via the
245\fBconfirm\fR command.
ba39faf6 246.TP
90ad6c6e
RK
247.B reminder \fIUSERNAME\fR
248Send a password reminder to user \fIUSERNAME\fR.
c0c23a60
RK
249If the user has no valid email address, or no password, or a
250reminder has been sent too recently, then no reminder will be sent.
6207d2f3 251.TP
460b9539 252.B remove \fIID\fR
c0c23a60
RK
253Remove the track identified by \fIID\fR.
254Requires one of the \fBremove mine\fR, \fBremove random\fR or
255\fBremove any\fR rights depending on how the
eb5dc014 256track came to be added to the queue.
460b9539 257.TP
dd9af5cb 258.B rescan \fR[\fBwait\fR] \fR[\fBfresh\fR]
c0c23a60
RK
259Rescan all roots for new or obsolete tracks.
260Requires the \fBrescan\fR right.
dd9af5cb
RK
261.IP
262If the \fBwait\fR flag is present then the response is delayed until the rescan
263completes.
264Otherwise the response arrives immediately.
265This is primarily intended for testing.
266.IP
267If the \fBfresh\fR flag is present a rescan is already underway then a second
268rescan will be started when it completes.
269The default behavior is to piggyback on the existing rescan.
270.IP
271NB that \fBfresh\fR is currently disabled in the server source, so using this
272flag will just provoke an error.
460b9539 273.TP
274.B resolve \fITRACK\fR
275Resolve a track name, i.e. if this is an alias then return the real track name.
276.TP
277.B resume
c0c23a60
RK
278Resume the current track after a \fBpause\fR command.
279Requires the \fBpause\fR right.
eb5dc014
RK
280.TP
281.B revoke \fBcookie\fR
0d350ff0 282Revoke a cookie previously created with \fBmake\-cookie\fR.
c0c23a60 283It will not be possible to use this cookie in the future.
460b9539 284.TP
0d350ff0 285.B rtp\-address
5818980a 286Report the RTP broadcast (or multicast) address, in the form \fIADDRESS
c0c23a60
RK
287PORT\fR.
288This command does not require authentication.
ca831831 289.TP
460b9539 290.B scratch \fR[\fIID\fR]
291Remove the track identified by \fIID\fR, or the currently playing track if no
c0c23a60
RK
292\fIID\fR is specified.
293Requires one of the \fBscratch mine\fR, \fBscratch random\fR or
294\fBscratch any\fR rights depending on how the track came to be
eb5dc014 295added to the queue.
460b9539 296.TP
297.B search \fITERMS\fR
c0c23a60
RK
298Search for tracks matching the search terms.
299The results are put in a response body, one to a line.
460b9539 300.IP
301The search string is split in the usual way, with quoting supported, into a
c0c23a60
RK
302list of terms.
303Only tracks matching all terms are included in the results.
460b9539 304.IP
305Any terms of the form \fBtag:\fITAG\fR limits the search to tracks with that
306tag.
307.IP
308All other terms are interpreted as individual words which must be present in
309the track name.
310.IP
311Spaces in terms don't currently make sense, but may one day be interpreted to
312allow searching for phrases.
313.TP
314.B \fBset\fR \fITRACK\fR \fIPREF\fR \fIVALUE\fR
c0c23a60
RK
315Set a preference.
316Requires the \fBprefs\fR right.
460b9539 317.TP
0d350ff0 318.B set\-global \fIKEY\fR \fIVALUE\fR
c0c23a60
RK
319Set a global preference.
320Requires the \fBglobal prefs\fR right.
460b9539 321.TP
322.B stats
323Send server statistics in plain text in a response body.
324.TP
325.B \fBtags\fR
326Send the list of currently known tags in a response body.
327.TP
328.B \fBunset\fR \fITRACK\fR \fIPREF\fR
c0c23a60
RK
329Unset a preference.
330Requires the \fBprefs\fR right.
460b9539 331.TP
0d350ff0 332.B \fBunset\-global\fR \fIKEY\fR
c0c23a60
RK
333Unset a global preference.
334Requires the \fBglobal prefs\fR right.
460b9539 335.TP
90ad6c6e
RK
336.B user \fIUSERNAME\fR \fIRESPONSE\fR
337Authenticate as user \fIUSERNAME\fR.
c0c23a60 338See
5e3f9e08
RK
339.B AUTHENTICATION
340below.
460b9539 341.TP
90ad6c6e 342.B userinfo \fIUSERNAME PROPERTY
3e3566ad
RK
343Get a user property.
344.TP
eb5dc014 345.B users
5818980a 346Send the list of currently known users in a response body.
eb5dc014 347.TP
460b9539 348.B version
349Send back a response with the server version as the second field.
350.TP
351.B volume \fR[\fILEFT\fR [\fIRIGHT\fR]]
352Get or set the volume.
353.IP
354With zero parameters just gets the volume and reports the left and right sides
355as the 2nd and 3rd fields of the response.
356.IP
c0c23a60
RK
357With one parameter sets both sides to the same value.
358With two parameters sets each side independently.
359Setting the volume requires the \fBvolume\fR right.
460b9539 360.SH RESPONSES
c0c23a60
RK
361Responses are three-digit codes.
362The first digit distinguishes errors from succesful responses:
460b9539 363.TP
364.B 2
365Operation succeeded.
366.TP
367.B 5
368Operation failed.
369.PP
370The second digit breaks down the origin of the response:
371.TP
372.B 0
c0c23a60
RK
373Generic responses not specific to the handling of the command.
374Mostly this is parse errors.
460b9539 375.TP
b4a80f69 376.B 1
37751x errors indicate that the user had insufficient rights for the command.
378.TP
460b9539 379.B 3
380Authentication responses.
381.TP
382.B 5
383Responses specific to the handling of the command.
384.PP
385The third digit provides extra information about the response:
386.TP
387.B 0
388Text part is just commentary.
389.TP
390.B 1
391Text part is a constant result e.g. \fBversion\fR.
392.TP
393.B 2
394Text part is a potentially variable result.
395.TP
396.B 3
397Text part is just commentary; a dot-stuffed body follows.
398.TP
399.B 4
c0c23a60
RK
400Text part is just commentary; an indefinite dot-stuffed body follows.
401(Used for \fBlog\fR.)
460b9539 402.TP
fb1bc1f5 403.B 5
c0c23a60
RK
404Used with "normal" errors, for instance a preference not being found.
405The text part is commentary.
fb1bc1f5 406.TP
460b9539 407.B 9
408The text part is just commentary (but would normally be a response for this
409command) e.g. \fBplaying\fR.
7b32e917
RK
410.PP
411Result strings (not bodies) intended for machine parsing (i.e. xx1 and xx2
412responses) are quoted.
460b9539 413.SH AUTHENTICATION
5e3f9e08 414When a connection is made the server sends a \fB231\fR response before any
c0c23a60
RK
415command is received.
416This contains a protocol generation, an algorithm name and a
417challenge encoded in hex, all separated by whitespace.
7b32e917
RK
418.PP
419The current protocol generation is \fB2\fR.
5e3f9e08 420.PP
b3141726 421The possible algorithms are (currently) \fBsha1\fR, \fBsha256\fR, \fBsha384\fR
c0c23a60
RK
422and \fBsha512\fR.
423\fBSHA1\fR etc work as synonyms.
460b9539 424.PP
5e3f9e08
RK
425The \fBuser\fR response consists of the selected hash of the user's password
426concatenated with the challenge, encoded in hex.
460b9539 427.SH "TRACK INFORMATION"
428Track information is encoded in a line (i.e. using the usual line syntax) as
c0c23a60
RK
429pairs of fields.
430The first is a name, the second a value.
431The names have the following meanings:
460b9539 432.TP 12
433.B expected
434The time the track is expected to be played at.
435.TP
436.B id
437A string uniquely identifying this queue entry.
438.TP
439.B played
440The time the track was played at.
441.TP
442.B scratched
443The user that scratched the track.
444.TP
445.B state
c0c23a60
RK
446The current track state.
447Valid states are:
460b9539 448.RS
449.TP 12
450.B failed
451The player failed (exited with nonzero status but wasn't scratched).
452.TP
453.B isscratch
454The track is actually a scratch.
455.TP
456.B no_player
457No player could be found for the track.
458.TP
459.B ok
460The track was played without any problems.
461.TP
462.B scratched
463The track was scratched.
464.TP
465.B started
466The track is currently playing.
467.TP
468.B unplayed
469In the queue, hasn't been played yet.
470.TP
471.B quitting
472The track was terminated because the server is shutting down.
473.RE
474.TP
475.B submitter
476The user that submitted the track.
477.TP
478.B track
479The filename of the track.
480.TP
481.B when
482The time the track was added to the queue.
483.TP
484.B wstat
485The wait status of the player in decimal.
486.SH NOTES
487Times are decimal integers using the server's \fBtime_t\fR.
488.PP
489For file listings, the regexp applies to the basename of the returned file, not
c0c23a60
RK
490the whole filename, and letter case is ignored.
491\fBpcrepattern\fR(3) describes the regexp syntax.
460b9539 492.PP
493Filenames are in UTF-8 even if the collection they come from uses some other
494encoding - if you want to access the real file (in such cases as the filenames
495actually correspond to a real file) you'll have to convert to whatever the
496right encoding is.
497.SH "EVENT LOG"
498The event log consists of lines starting with a hexadecimal timestamp and a
c0c23a60
RK
499keyword followed by (optionally) parameters.
500The parameters are quoted in the usual DisOrder way.
501Currently the following keywords are used:
460b9539 502.TP
503.B completed \fITRACK\fR
504Completed playing \fITRACK\fR
505.TP
506.B failed \fITRACK\fR \fIERROR\fR
507Completed playing \fITRACK\fR with an error status
508.TP
90ad6c6e
RK
509.B moved \fIUSERNAME\fR
510User \fIUSERNAME\fR moved some track(s).
c0c23a60 511Further details aren't included any more.
460b9539 512.TP
90ad6c6e 513.B playing \fITRACK\fR [\fIUSERNAME\fR]
460b9539 514Started playing \fITRACK\fR.
515.TP
516.B queue \fIQUEUE-ENTRY\fR...
517Added \fITRACK\fR to the queue.
518.TP
519.B recent_added \fIQUEUE-ENTRY\fR...
520Added \fIID\fR to the recently played list.
521.TP
522.B recent_removed \fIID\fR
523Removed \fIID\fR from the recently played list.
524.TP
90ad6c6e 525.B removed \fIID\fR [\fIUSERNAME\fR]
c0c23a60 526Queue entry \fIID\fR was removed.
90ad6c6e 527This is used both for explicit removal (when \fIUSERNAME\fR is present)
c0c23a60 528and when playing a track (when it is absent).
460b9539 529.TP
e025abff
RK
530.B rescanned
531A rescan completed.
532.TP
90ad6c6e
RK
533.B scratched \fITRACK\fR \fIUSERNAME\fR
534\fITRACK\fR was scratched by \fIUSERNAME\fR.
460b9539 535.TP
536.B state \fIKEYWORD\fR
c0c23a60
RK
537Some state change occurred.
538The current set of keywords is:
460b9539 539.RS
540.TP
5abe307a
RK
541.B completed
542The current track completed successfully.
543.TP
460b9539 544.B disable_play
545Playing was disabled.
546.TP
547.B disable_random
548Random play was disabled.
549.TP
550.B enable_play
551Playing was enabled.
552.TP
553.B enable_random
554Random play was enabled.
555.TP
5abe307a
RK
556.B failed
557The current track failed.
558.TP
460b9539 559.B pause
560The current track was paused.
561.TP
5abe307a
RK
562.B playing
563A track started playing.
564.TP
460b9539 565.B resume
566The current track was resumed.
5abe307a
RK
567.TP
568.B scratched
569The current track was scratched.
570.PP
571To simplify client implementation, \fBstate\fR commands reflecting the current
572state are sent at the start of the log.
460b9539 573.RE
574.TP
575.B volume \fILEFT\fR \fIRIGHT\fR
576The volume changed.
577.PP
578.IR QUEUE-ENTRY ...
579is as defined in
580.B "TRACK INFORMATION"
581above.
f9635e06 582.SH "CHARACTER ENCODING"
c0c23a60
RK
583All data sent by both server and client is encoded using UTF-8.
584Moreover it must be valid UTF-8, i.e. non-minimal sequences are not
585permitted, nor are surrogates, nor are code points outside the
586Unicode code space.
f9635e06
RK
587.PP
588There are no particular normalization requirements on either side of the
c0c23a60
RK
589protocol.
590The server currently converts internally to NFC, the client must
f9635e06
RK
591normalize the responses returned if it needs some normalized form for further
592processing.
593.PP
594The various characters which divide up lines may not be followed by combining
c0c23a60
RK
595characters.
596For instance all of the following are prohibited:
f9635e06
RK
597.TP
598.B o
c0c23a60
RK
599LINE FEED followed by a combining character.
600For example the sequence LINE FEED, COMBINING GRAVE ACCENT is never permitted.
f9635e06
RK
601.TP
602.B o
603APOSTROPHE or QUOTATION MARK followed by a combining character when used to
c0c23a60
RK
604delimit fields.
605For instance a line starting APOSTROPHE, COMBINING CEDILLA is prohibited.
f9635e06
RK
606.IP
607Note that such sequences are not prohibited when the quote character cannot be
c0c23a60
RK
608interpreted as a field delimiter.
609For instance APOSTROPHE, REVERSE SOLIDUS, APOSTROPHE, COMBINING CEDILLA,
610APOSTROPHE would be permitted.
f9635e06
RK
611.TP
612.B o
613REVERSE SOLIDUS (BACKSLASH) followed by a combining character in a quoted
c0c23a60
RK
614string when it is the first character of an escape sequence.
615For instance a line starting APOSTROPHE, REVERSE SOLIDUS, COMBINING TILDE
616is prohibited.
f9635e06
RK
617.IP
618As above such sequences are not prohibited when the character is not being used
c0c23a60
RK
619to start an escape sequence.
620For instance APOSTROPHE, REVERSE SOLIDUS, REVERSE SOLIDS, COMBINING TILDE,
621APOSTROPHE is permitted.
f9635e06
RK
622.TP
623.B o
624Any of the field-splitting whitespace characters followed by a combining
c0c23a60
RK
625character when not part of a quoted field.
626For instance a line starting COLON, SPACE, COMBINING CANDRABINDU is prohibited.
f9635e06
RK
627.IP
628As above non-delimiter uses are fine.
629.TP
630.B o
631The FULL STOP characters used to quote or delimit a body.
632.PP
633Furthermore none of these characters are permitted to appear in the context of
634a canonical decomposition (i.e. they must still be present when converted to
c0c23a60
RK
635NFC).
636In practice however this is not an issue in Unicode 5.0.
f9635e06
RK
637.PP
638These rules are consistent with the observation that the split() function is
c0c23a60
RK
639essentially a naive ASCII parser.
640The implication is not that these sequences never actually appear in
641the protocol, merely that the server is not required to honor them in
642any useful way nor be consistent between versions: in current
f9635e06
RK
643versions the result will be lines and fields that start with combining
644characters and are not necessarily split where you expect, but future versions
645may remove them, reject them or ignore some or all of the delimiters that have
646following combining characters, and no notice will be given of any change.
460b9539 647.SH "SEE ALSO"
648\fBdisorder\fR(1),
649\fBtime\fR(2),
650\fBdisorder\fR(3),
651\fBpcrepattern\fR(3)
652\fBdisorder_config\fR(5),
653\fBdisorderd\fR(8),
654\fButf8\fR(7)
655.\" Local Variables:
656.\" mode:nroff
657.\" fill-column:79
658.\" End: