enum ast_option_flags |
Definition at line 36 of file options.h.
00036 { 00037 /*! Allow \#exec in config files */ 00038 AST_OPT_FLAG_EXEC_INCLUDES = (1 << 0), 00039 /*! Do not fork() */ 00040 AST_OPT_FLAG_NO_FORK = (1 << 1), 00041 /*! Keep quiet */ 00042 AST_OPT_FLAG_QUIET = (1 << 2), 00043 /*! Console mode */ 00044 AST_OPT_FLAG_CONSOLE = (1 << 3), 00045 /*! Run in realtime Linux priority */ 00046 AST_OPT_FLAG_HIGH_PRIORITY = (1 << 4), 00047 /*! Initialize keys for RSA authentication */ 00048 AST_OPT_FLAG_INIT_KEYS = (1 << 5), 00049 /*! Remote console */ 00050 AST_OPT_FLAG_REMOTE = (1 << 6), 00051 /*! Execute an asterisk CLI command upon startup */ 00052 AST_OPT_FLAG_EXEC = (1 << 7), 00053 /*! Don't use termcap colors */ 00054 AST_OPT_FLAG_NO_COLOR = (1 << 8), 00055 /*! Are we fully started yet? */ 00056 AST_OPT_FLAG_FULLY_BOOTED = (1 << 9), 00057 /*! Trascode via signed linear */ 00058 AST_OPT_FLAG_TRANSCODE_VIA_SLIN = (1 << 10), 00059 /*! Dump core on a seg fault */ 00060 AST_OPT_FLAG_DUMP_CORE = (1 << 12), 00061 /*! Cache sound files */ 00062 AST_OPT_FLAG_CACHE_RECORD_FILES = (1 << 13), 00063 /*! Display timestamp in CLI verbose output */ 00064 AST_OPT_FLAG_TIMESTAMP = (1 << 14), 00065 /*! Override config */ 00066 AST_OPT_FLAG_OVERRIDE_CONFIG = (1 << 15), 00067 /*! Reconnect */ 00068 AST_OPT_FLAG_RECONNECT = (1 << 16), 00069 /*! Transmit Silence during Record() and DTMF Generation */ 00070 AST_OPT_FLAG_TRANSMIT_SILENCE = (1 << 17), 00071 /*! Suppress some warnings */ 00072 AST_OPT_FLAG_DONT_WARN = (1 << 18), 00073 /*! End CDRs before the 'h' extension */ 00074 AST_OPT_FLAG_END_CDR_BEFORE_H_EXTEN = (1 << 19), 00075 /*! Use DAHDI Timing for generators if available */ 00076 AST_OPT_FLAG_INTERNAL_TIMING = (1 << 20), 00077 /*! Always fork, even if verbose or debug settings are non-zero */ 00078 AST_OPT_FLAG_ALWAYS_FORK = (1 << 21), 00079 /*! Disable log/verbose output to remote consoles */ 00080 AST_OPT_FLAG_MUTE = (1 << 22), 00081 /*! There is a per-file debug setting */ 00082 AST_OPT_FLAG_DEBUG_FILE = (1 << 23), 00083 /*! There is a per-file verbose setting */ 00084 AST_OPT_FLAG_VERBOSE_FILE = (1 << 24), 00085 };
struct ast_flags ast_compat = { 7 } |
Definition at line 156 of file asterisk.c.
struct ast_flags ast_options = { AST_DEFAULT_OPTIONS } |
Definition at line 155 of file asterisk.c.
Referenced by do_reload(), handle_show_settings(), handle_verbose(), and main().
int option_debug |
Debug level
Definition at line 159 of file asterisk.c.
Referenced by __sip_destroy(), aji_handle_presence(), aji_log_hook(), ast_add_extension2_lockopt(), ast_audiohook_write_frame(), ast_dsp_busydetect(), ast_log(), ast_monitor_change_fname(), ast_read_generator_actions(), ast_rtcp_read(), ast_rtp_codec_setpref(), ast_rtp_raw_write(), ast_rtp_read(), ast_sched_add_variable(), ast_sched_del(), audiohook_read_frame_both(), bridge_p2p_rtp_write(), callerid_feed_jp(), config_module(), config_text_file_save(), dahdi_handle_event(), dahdi_softhangup_all(), do_directory(), eivr_comm(), handle_verbose(), load_module(), parse_config(), parse_cookies(), prep_email_sub_vars(), process_cisco_dtmf(), process_request_queue(), process_rfc2833(), process_sdp(), raw_hangup(), realtime_ldap_result_to_vars(), scheduled_destroy(), send_eivr_event(), sendmail(), set_logging(), show_dialplan_helper(), sip_dump_history(), udptl_build_packet(), and update_ldap().
int option_maxcalls |
Max number of active calls
Definition at line 161 of file asterisk.c.
Referenced by action_coresettings(), handle_chanlist(), handle_showcalls(), and increase_call_count().
int option_maxfiles |
Max number of open file handles (files, sockets)
Definition at line 162 of file asterisk.c.
Referenced by action_coresettings().
double option_maxload |
Max load avg on system
Definition at line 160 of file asterisk.c.
Referenced by action_coresettings(), and increase_call_count().
long option_minmemfree |
Minimum amount of free system memory - stop accepting calls if free memory falls below this watermark
Definition at line 164 of file asterisk.c.
Referenced by increase_call_count().
int option_verbose |
Verbosity level
Definition at line 158 of file asterisk.c.
Referenced by aji_handle_subscribe(), ast_log(), dahdi_write_frame(), destroy_all_channels(), dumpchan_exec(), find_transcoders(), handle_frame(), handle_verbose(), init_files_class(), load_resource(), moh_files_release(), and verbose_exec().