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