aboutsummaryrefslogtreecommitdiffstats
path: root/1.2-netsec/doc/apps.txt
diff options
context:
space:
mode:
Diffstat (limited to '1.2-netsec/doc/apps.txt')
-rw-r--r--1.2-netsec/doc/apps.txt10
1 files changed, 0 insertions, 10 deletions
diff --git a/1.2-netsec/doc/apps.txt b/1.2-netsec/doc/apps.txt
deleted file mode 100644
index c9696a1a5..000000000
--- a/1.2-netsec/doc/apps.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-Asterisk applications register themselves with ast_application_register.
-They should have a short, unique name, and an exec function which takes
-as its arguments a channel and some data that might be useful for callback
-stuff. Remember to keep track of how many and which channels are using
-your application so that should the module need to be unloaded
-(particularly force unloaded), you will be able to ast_softhangup all the
-channels. An application should *never* call ast_hangup on the channel
-that it is running on (although it could conceivably hang up other
-channels that it allocates). See app_playback.c as an example of a simple
-application.