Loglevel adjustments.
[paraslash.git] / server.ggo
index 9f3912032eeb8ce1ca420a8a3e0193fbe45eb58f..2a5fabc30e61e3385475407897ce45879e86fe4b 100644 (file)
@@ -4,19 +4,19 @@ section "General options"
 
 option "loglevel" l
 #~~~~~~~~~~~~~~~~~~
-"set loglevel (1-6)"
+"set loglevel (0-6)"
 int typestr="level"
-default="4"
+default="3"
 optional
 details="
-       Larger values mean less verbose output. Loglevel 1 (debug) gets
-       really noisy; a value of 2 (info) produces still noisy output,
+       Larger values mean less verbose output. Loglevel 0 (debug) gets
+       really noisy; a value of 1 (info) produces still noisy output,
        but this won't fill up the disk quicky. Messaged logged with
-       loglevel 3 (notice) indicate normal but significant events
-       while level 4 (warning) logs unexpected events that can be
+       loglevel 2 (notice) indicate normal but significant events
+       while level 3 (warning) logs unexpected events that can be
        handled. Unhandled error conditions are logged with loglevel
-       5 (error) and crititcal errors are logged using loglevel 6
-       (crit).  Finally, loglevel 7 (emerg) is reserved for messages
+       4 (error) and crititcal errors are logged using loglevel 5
+       (crit).  Finally, loglevel 6 (emerg) is reserved for messages
        that cause para_server to terminate immediately.
 "
 
@@ -303,48 +303,48 @@ details="
        See http_max_clients for details.
 "
 
-#####################
-section "ortp sender"
-#####################
+####################
+section "udp sender"
+####################
 
-option "ortp_target" -
-#~~~~~~~~~~~~~~~~~~~~~
-"add ortp target"
+option "udp_target" -
+#~~~~~~~~~~~~~~~~~~~~
+"add udp target"
 string typestr="a.b.c.d:p"
 optional
 multiple
 details="
        Add given host/port to the list of targets.  This option
-       can be given multiple times.  Example: '224.0.1.38:1500'
-       instructs the ortp sender to send to udp port 1500 on host
+       can be given multiple times. Example: '224.0.1.38:1500'
+       instructs the udp sender to send to udp port 1500 on host
        224.0.1.38 (unassigned ip in the Local Network Control Block
-       224.0.0/24). This is useful for LAN-streaming.
+       224.0.0/24). This is useful for multicast streaming.
 "
 
-option "ortp_no_autostart" -
-#~~~~~~~~~~~~~~~~~~~~~~~~~~~
+option "udp_no_autostart" -
+#~~~~~~~~~~~~~~~~~~~~~~~~~~
 "do not start sending"
 flag off
 details="
-       If this option is given, ortp streaming may be activated at
+       If this option is given, udp streaming may be activated at
        a later time by using the sender command.
 "
 
-option "ortp_default_port" -
-#~~~~~~~~~~~~~~~~~~~~~~~~~~~
+option "udp_default_port" -
+#~~~~~~~~~~~~~~~~~~~~~~~~~~
 "udp port to send to"
 int typestr="port"
-default="1500"
+default="8000"
 optional
 
-option "ortp_header_interval" H
-#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+option "udp_header_interval" H
+#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 "duration for sending header"
 int typestr="ms"
 default="2000"
 optional
 details="
-       As the ortp sender has no idea about connected clients it
+       As the udp sender has no idea about connected clients it
        sends the audio file header periodically if necessary. This
        option is used to specify the duration of the interval between
        sending the header. Shorter values decrease the average time
@@ -354,14 +354,14 @@ details="
        audio format that needs an audio file header.
 "
 
-option "ortp_jitter_compensation" j
-#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-"configure jitter compensation"
-int typestr="ms"
-default="400"
+option "udp_ttl" t
+#~~~~~~~~~~~~~~~~~
+"set time to live value"
+int typestr="num"
+default="10"
 optional
 details="
-       ortp's adaptive jitter compensation gets activated whenever
-       this value is greater than zero. See the ortp documentation
-       about details on this feature.
+       This option instructs the udp sender to set the time to live to
+       \"num\" for the sending udp socket. Only useful for multicast
+       udp streaming.
 "