-
Notifications
You must be signed in to change notification settings - Fork 581
/
help_msg.h
118 lines (111 loc) · 4.98 KB
/
help_msg.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of OpenSIPS, a free SIP server.
*
* OpenSIPS is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version
*
* OpenSIPS is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/*!
*\file
* \brief The help message that is shown on the console with 'opensips -h'
*/
/*! \mainpage Developer documentation
*
* \section intro_sec Introduction
* This is the OpenSIPS developer documentation. At the moment most information
* here is autogenerated from the sources. Additional content will be added
* over time, any help is of course welcome.
*
* This page tries to give some starting points for developers that want to
* understand the server structure and create their own extensions or modules.
*
* \section db_sec Database interface
* The server uses a own database interface to hide the differences of the
* supported db engines. Every module that implementst this API can use all
* database drivers, as long as they implement the needed capabilities.
*
* The file db.h defines the database API.
*
* \section start_sec Server start
* The implementation of the server start process can be found in the
* main.c file.
*
* \section datastruct_sec Important data structures
* hdr_field - represents a SIP header \n
* \ref _str "str" - contains text variables \n
*
* \todo incomplete
*
*/
#ifndef HELP_MSG_H
#define HELP_MSG_H
#include "config.h"
static char help_msg[]= "\
Usage: " NAME " -l address [-l address ...] [options]\n\
Options:\n\
-f file Configuration file (default " CFG_FILE ")\n\
-c Check configuration file for errors\n\
-C Similar to '-c' but in addition checks the flags of exported\n\
functions from included route blocks\n\
-l address Listen on the specified address/interface (multiple -l\n\
mean listening on more addresses). The address format is\n\
[proto:]addr[:port], where proto=udp|tcp and \n\
addr= host|ip_address|interface_name. E.g: -l locahost, \n\
-l udp:127.0.0.1:5080, -l eth0:5062 The default behavior\n\
is to listen on all the interfaces.\n\
-n processes Number of worker processes to fork per UDP interface\n\
(default: 8)\n\
-r Use dns to check if is necessary to add a \"received=\"\n\
field to a via\n\
-R Same as `-r` but use reverse dns;\n\
(to use both use `-rR`)\n\
-v Turn on \"via:\" host checking when forwarding replies\n\
-d Debugging mode (multiple -d increase the level)\n\
-D Run in debug mode\n\
-F Daemon mode, but leave main process foreground\n\
-E Option deprecated since version 3.4, set the \n\
\"stderror_enabled=yes\" configuration parameter instead\n\
-N processes Number of TCP worker processes (default: equal to `-n`)\n\
-W method poll method\n\
-V Version number\n\
-h This help message\n\
-b nr Maximum receive buffer size which will not be exceeded by\n\
auto-probing procedure even if OS allows\n\
-a allocator The memory allocator to use for all memory segments\n\
Possible values: \n\
F_MALLOC F_MALLOC_DBG\n\
Q_MALLOC Q_MALLOC_DBG\n\
HP_MALLOC HP_MALLOC_DBG\n\
-k allocator The pkg memory allocator to use (overrides -a)\n\
-s allocator The shared memory allocator to use (overrides -a)\n\
-e allocator The restart-persistent memory allocator to use (overrides -a)\n\
-m nr Size of shared memory allocated in Megabytes\n\
-M nr Size of pkg memory allocated in Megabytes\n\
-w dir Change the working directory to \"dir\" (default \"/\")\n\
-t dir Chroot to \"dir\"\n\
-u uid Change uid \n\
-g gid Change gid \n\
-p pp_cmd Preprocess the configuration file (along with any others\n\
included) using the specified system command. The command \n\
shall receive input via stdin and it must output the\n\
result to stdout\n\
-P file Create a pid file\n\
-G file Create a pgid file\n\
-A address Set the globally advertised addres\n"
#ifdef UNIT_TESTS
" -T Fork, run unit tests and exit.\n"
#endif
;
#endif