Changeset 1113:c4f7255f7b5d in roaraudio for doc


Ignore:
Timestamp:
01/14/09 18:42:40 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

updated manpages a bit, mostly updated parameter lists

Location:
doc
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • doc/man1/roarctl.1

    r167 r1113  
    2020Print some help text. 
    2121 
     22.TP 
     23\fB-v\fR 
     24Be verbose. May be used multiple times. 
     25 
    2226.SH "NETWORK OPTIONS" 
    2327.TP 
     
    2529The server to connect to 
    2630 
    27 .SH "COMMANDS" 
     31.SH "BASIC COMMANDS" 
    2832.TP 
    2933\fBhelp\fR 
     
    4246Quits the server. 
    4347 
     48.TP 
     49\fBterminate\fR 
     50Terminates the server as soon as all clients disconnected and all streams reaches EOF. 
     51 
     52 
     53.SH "STREAM COMMANDS" 
    4454.TP 
    4555\fBvolume STREAMID CHANNELS VOL0 VOL1 VOL2...\fR 
     
    6979You can get the \fIID\fR via \fBlist*\fR (see bellow). 
    7080 
     81.SH "LISTING COMMANDS" 
    7182.TP 
    7283\fBserveroinfo\fR 
  • doc/man1/roard.1

    r775 r1113  
    2929.TP 
    3030\fB--realtime\fR 
    31 Ask for higher priority. 
     31Ask for higher priority. May be used multiple times. 
     32 
     33.TP 
     34\fB--chroot DIR\fR 
     35Chroots to the given directory. This improves the security. This normally needs root privileg's. 
     36 
     37.SH "USER AND GROUPS" 
     38.TP 
     39\fB--setgid\fR 
     40Sets GroupID to the audio group as specified via \fB-G\fR. 
     41 
     42.TP 
     43\fB--setuid\fR 
     44Sets UserID to the audio user as specified via \fB-U\fR. 
     45 
     46.TP 
     47\fB-G GROUP\fR 
     48Sets the group for the UNIX Domain Socket, (default: audio) 
     49You need the permittions to change the GID. 
     50 
     51.TP 
     52\fB-U USER\fR 
     53Sets the user for the UNIX Domain Socket, (default: do not set) 
     54You need the permittions to change the UID (normaly only root has). 
     55 
    3256 
    3357.SH "AUDIO OPTIONS" 
     
    4569 
    4670.SH "DRIVER OPTIONS" 
     71.TP 
     72\fB--list-driver\fR 
     73Shows a list of all available drivers. 
    4774 
    4875.TP 
    4976\fB--driver\fR, \fB-d\fR 
    50 Set the output driver. To get a list of all drivers use \fB-d list\fR. 
     77Set the output driver. To get a list of all drivers use \fB--list-driver\fR. 
     78This option will obsolete soon. 
    5179 
    5280.TP 
     
    5482Set the device for the output driver. Possible devices depends on the driver. 
    5583They may be a path to a device node or a hostname. 
    56 Use \fB-d list\fR to get a hint. 
     84Use \fB--list-driver\fR to get a hint. 
     85This option will obsolete soon. 
     86 
     87.SH "SOURCE OPTIONS" 
     88.TP 
     89\fB--source\fR, \fB-s\fR 
     90Adds a source of the given type. 
     91 
     92.TP 
     93\fB-S\fR 
     94Sets the device or filename for the source. Type may depend on the source type. 
     95 
     96.TP 
     97\fB-sO\fR 
     98Sets options for the current source. 
     99 
     100.TP 
     101\fB-sP\fR 
     102Marks the source as primary. If the source reaches EOF roard will quit automatically. 
    57103 
    58104.SH "NETWORK OPTIONS" 
     
    66112 
    67113.TP 
     114\fB--decnet\fR, \fB-n\fR 
     115Sets defaults for DECnet Socket. 
     116 
     117.TP 
    68118\fB--port\fR, \fB-p\fR 
    69119Sets the port the server should listen on. 
     
    74124 
    75125.TP 
    76 \fB-G GROUP\fR 
    77 Sets the group the UNIX Domain Socket should be \fBchgrp\fR(1)ed if UNIX Domain Socket is used. 
    78 Default group is "audio". 
     126\fB--no-listen\fR 
     127Do not listen for new clients (only usefull for relaing, impleys --terminate). 
     128 
     129.TP 
     130\fB--client-fh FH\fR 
     131Expects a client on the given FH. This may be useful with \fB--no-listen\fR. 
     132 
     133.TP 
     134\fB--close-fh FH\fR 
     135Close the given FH. This is not useful for endusers but used internaly. 
    79136 
    80137 
     
    98155 
    99156.SH "BUGS" 
    100 There are a lot of bugs... 
     157There are lots of bugs... 
    101158 
    102159.SH "SEE ALSO" 
  • doc/man3/roar_exit.3

    r159 r1113  
    66roar_exit \- let RoarAudio's sound server quit 
    77 
     8roar_terminate \- let RoarAudio's sound server quit as soon as all clients quit 
     9 
    810.SH SYNOPSIS 
    911 
     
    1214int roar_exit(struct roar_connection * con); 
    1315 
     16int roar_terminate(struct roar_connection * con, int terminate); 
     17 
    1418.SH "DESCRIPTION" 
    1519Ask the sound server to quit. 
     20 
     21roar_exit() let the server quit .... 
     22 
     23roar_terminate() will let the server quit as soon as all clients disconnects 
     24and all input streams ended. The listening socket will be closed. This is useful 
     25in case of restarting roard. 
    1626 
    1727 
     
    2030\fBcon\fR 
    2131An open controll connection to the server. 
     32 
     33.TP 
     34\fBterminate\fR 
     35Wait for all clients to disconnect and all streams to EOF in case of 1. 
     36In case of 0 roar_terminate() is equal to roar_exit(). 
    2237 
    2338.SH "RETURN VALUE" 
  • doc/symlinks.src

    r784 r1113  
    1313roar_simple_record              3       roar_simple_play        3 
    1414roar_codec2str                  3       roar_str2codec          3 
     15roar_terminate                  3       roar_exit               3 
Note: See TracChangeset for help on using the changeset viewer.