aboutsummaryrefslogtreecommitdiffstats
path: root/pbx
diff options
context:
space:
mode:
authoroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2008-05-14 08:16:25 +0000
committeroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2008-05-14 08:16:25 +0000
commit9a192de4fc76a38bc5f8c50622c15f72aff6921a (patch)
tree4bc4ee62f1932ace758fcb0d4765754e8c7a15ca /pbx
parenta843c9ca62f8543aa6daa28c8fa0f490e9c97e0b (diff)
Doxygen formatting change only
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@116179 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'pbx')
-rw-r--r--pbx/pbx_spool.c51
1 files changed, 19 insertions, 32 deletions
diff --git a/pbx/pbx_spool.c b/pbx/pbx_spool.c
index 113fc2b73..b297e9a02 100644
--- a/pbx/pbx_spool.c
+++ b/pbx/pbx_spool.c
@@ -61,45 +61,32 @@ static char qdonedir[255];
struct outgoing {
char fn[256];
- /*! Current number of retries */
- int retries;
- /*! Maximum number of retries permitted */
- int maxretries;
- /*! How long to wait between retries (in seconds) */
- int retrytime;
- /*! How long to wait for an answer */
- int waittime;
- /*! PID which is currently calling */
- long callingpid;
+ int retries; /*!< Current number of retries */
+ int maxretries; /*!< Maximum number of retries permitted */
+ int retrytime; /*!< How long to wait between retries (in seconds) */
+ int waittime; /*!< How long to wait for an answer */
+ long callingpid; /*!< PID which is currently calling */
- /*! What to connect to outgoing */
- char tech[256];
- char dest[256];
-
- /* If application */
- char app[256];
- char data[256];
+ char tech[256]; /*!< Which channel driver to use for outgoing call */
+ char dest[256]; /*!< Which device/line to use for outgoing call */
+
+ char app[256]; /*!< If application: Application name */
+ char data[256]; /*!< If applicatoin: Application data */
- /* If extension/context/priority */
- char exten[AST_MAX_EXTENSION];
- char context[AST_MAX_CONTEXT];
- int priority;
+ char exten[AST_MAX_EXTENSION]; /*!< If extension/context/priority: Extension in dialplan */
+ char context[AST_MAX_CONTEXT]; /*!< If extension/context/priority: Dialplan context */
+ int priority; /*!< If extension/context/priority: Dialplan priority */
- /* CallerID Information */
- char cid_num[256];
- char cid_name[256];
+ char cid_num[256]; /*!< CallerID Information: Number/extension */
+ char cid_name[256]; /*!< CallerID Information: Name */
- /*! account code */
- char account[AST_MAX_ACCOUNT_CODE];
+ char account[AST_MAX_ACCOUNT_CODE]; /*!< account code */
- /*! Variables and Functions */
- struct ast_variable *vars;
+ struct ast_variable *vars; /*!< Variables and Functions */
- /*! Maximum length of call */
- int maxlen;
+ int maxlen; /*!< Maximum length of call */
- /*! options */
- struct ast_flags options;
+ struct ast_flags options; /*!< options */
};
static void init_outgoing(struct outgoing *o)