Asterisk Schulungen
Schulungen vom Autor dieses Buches zum Thema Asterisk, FreeSWITCH und Kamailio finden Sie unter https://www.wintermeyer-consulting.de
Twitter
Updates zu diesem Buch:
http://twitter.com/wintermeyer
- Asterisk 1.4 - 10.0
- Vorwort
- Das How-To zu diesem Buch
- „Hello World“
- Dialplan – die Grundlagen
- Deutsche Anpassungen
- Case-Study einer Beispielfirma
- Programmieren im Dialplan
- AEL
- Protokolle
- Codecs
- ISDN
- Analoge Telefonie
- Media Gateways
- Voicemail-System
- Interactive-Voice-Response-Systeme (IVR)
- Die Asterisk-Datenbank (AstDB)
- Warteschleifen für Call-Center
- Features
- Telefonkonferenzen
- Asterisk fernsteuern
- Asterisk Gateway Interface (AGI)
- Fax-Server
- SIP-Telefone
- BLF, Hints, Pickup
- Danksagungen
- Glossar
- Installationsanleitungen für Asterisk 1.4, 1.6, 1.8 und 10.0
- Spezielle Installationsanleitungen für Asterisk mit ISDN- oder Analog-Karten
- Applikationen im Dialplan
- Funktionen im Dialplan
AGC()
AGENT()
ARRAY()
AST_CONFIG()
BASE64_DECODE()
BASE64_ENCODE()
BLACKLIST()
CALLERID()
CALLERPRES()
CDR()
CHANNEL()
CHANNELS()
CHECK_MD5()
CHECKSIPDOMAIN()
CURL()
CUT()
DB()
DB_DELETE()
DB_EXISTS()
DENOISE()
DEVICE_STATE()
DIALGROUP()
DIALPLAN_EXISTS()
DUNDILOOKUP()
DUNDIQUERY()
DUNDIRESULT()
ENUMLOOKUP()
ENUMQUERY()
ENUMRESULT()
ENV()
EVAL()
EXCEPTION()
EXISTS()
EXTENSION_STATE()
FIELDQTY()
FILE()
FILTER()
GLOBAL()
GROUP()
GROUP_COUNT()
GROUP_LIST()
GROUP_MATCH_COUNT()
HASH()
HASHKEYS()
HINT()
IAXPEER()
IAXVAR()
ICONV()
IF()
IFMODULE()
IFTIME()
IMPORT()
ISNULL()
JABBER_STATUS()
KEYPADHASH()
LANGUAGE()
LEN()
LOCAL()
LOCK()
MAILBOX_EXISTS()
MATH()
MD5()
MEETME_INFO()
MINIVMACCOUNT()
MINIVMCOUNTER()
MUSICCLASS()
ODBC_ANTIGF()
ODBC_FETCH()
ODBC_
funktionsname
()ODBC_PRESENCE()
ODBC_SQL()
QUEUE_MEMBER()
QUEUE_MEMBER_COUNT()
QUEUE_MEMBER_LIST()
QUEUE_MEMBER_PENALTY()
QUEUE_VARIABLES()
QUEUE_WAITING_COUNT()
QUEUEAGENTCOUNT()
QUOTE()
RAND()
REALTIME()
REALTIME_DESTROY()
REALTIME_STORE()
REGEX()
SET()
SHA1()
SHARED()
- Asterisk-Versionen:
- Interner Hilfetext zu dieser Funktion in Asterisk 1.6:
- Differenz des internen Hilfetexts von Asterisk 1.4 zu 1.6:
- Siehe auch
SHELL()
SIP_HEADER()
SIPCHANINFO()
SIPPEER()
SMDI_MSG()
SMDI_MSG_RETRIEVE()
SORT()
SPRINTF()
SQL_ESC()
STAT()
STRFTIME()
STRPTIME()
SYSINFO()
TIMEOUT()
TOLOWER()
TOUPPER()
TRYLOCK()
TXTCIDNAME()
UNLOCK()
URIDECODE()
URIENCODE()
VALID_EXTEN()
VERSION()
VMCOUNT()
VOLUME()
- AGI-Befehle
- AMI-Befehle
- Konfigurations-Templates
- Upgrade von Asterisk 1.4 auf 1.6
- Zaptel zu DAHDI
- IAX vs. SIP
- GNU Free Documentation License
- Stichwortverzeichnis
SHARED(variablenname
[,channel
])
Liest/setzt eine Channel-Variable, die sich mehrere Channels
teilen.
Asterisk-Versionen:
| | | | | 1.6 |————————
Interner Hilfetext zu dieser Funktion in Asterisk 1.6:
-= Info about function 'SHARED' =-
[Syntax]
SHARED(<varname>[,<channel>])
[Synopsis]
Gets or sets the shared variable specified
[Description]
Implements a shared variable area, in which you may share variables between
channels. If channel is unspecified, defaults to the current channel. Note
that the channel name may be the complete name (i.e. SIP/12-abcd1234) or the
prefix only (i.e. SIP/12).
The variables used in this space are separate from the general namespace of
the channel and thus ${SHARED(foo)} and ${foo} represent two completely
different variables, despite sharing the same name.
Finally, realize that there is an inherent race between channels operating
at the same time, fiddling with each others' internal variables, which is why
this special variable namespace exists; it is to remind you that variables in
the SHARED namespace may change at any time, without warning. You should
therefore take special care to ensure that when using the SHARED namespace,
you retrieve the variable and store it in a regular channel variable before
using it in a set of calculations (or you might be surprised by the result).
Differenz des internen Hilfetexts von Asterisk 1.4 zu 1.6:
— in Asterisk 1.4 nicht vorhanden —- Copyright © 2010 Stefan Wintermeyer.
- Docbook Conversion and Design by Pratik Sinha