Doxygen formatting change only

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@116179 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Olle Johansson
2008-05-14 08:16:25 +00:00
parent 0ebec7fa4f
commit cc6d4100ad

View File

@@ -61,45 +61,32 @@ static char qdonedir[255];
struct outgoing { struct outgoing {
char fn[256]; char fn[256];
/*! Current number of retries */ int retries; /*!< Current number of retries */
int retries; int maxretries; /*!< Maximum number of retries permitted */
/*! Maximum number of retries permitted */ int retrytime; /*!< How long to wait between retries (in seconds) */
int maxretries; int waittime; /*!< How long to wait for an answer */
/*! How long to wait between retries (in seconds) */ long callingpid; /*!< PID which is currently calling */
int retrytime;
/*! How long to wait for an answer */
int waittime;
/*! PID which is currently calling */
long callingpid;
/*! What to connect to outgoing */ char tech[256]; /*!< Which channel driver to use for outgoing call */
char tech[256]; char dest[256]; /*!< Which device/line to use for outgoing call */
char dest[256];
/* If application */ char app[256]; /*!< If application: Application name */
char app[256]; char data[256]; /*!< If applicatoin: Application data */
char data[256];
/* If extension/context/priority */ char exten[AST_MAX_EXTENSION]; /*!< If extension/context/priority: Extension in dialplan */
char exten[AST_MAX_EXTENSION]; char context[AST_MAX_CONTEXT]; /*!< If extension/context/priority: Dialplan context */
char context[AST_MAX_CONTEXT]; int priority; /*!< If extension/context/priority: Dialplan priority */
int priority;
/* CallerID Information */ char cid_num[256]; /*!< CallerID Information: Number/extension */
char cid_num[256]; char cid_name[256]; /*!< CallerID Information: Name */
char cid_name[256];
/*! account code */ char account[AST_MAX_ACCOUNT_CODE]; /*!< account code */
char account[AST_MAX_ACCOUNT_CODE];
/*! Variables and Functions */ struct ast_variable *vars; /*!< Variables and Functions */
struct ast_variable *vars;
/*! Maximum length of call */ int maxlen; /*!< Maximum length of call */
int maxlen;
/*! options */ struct ast_flags options; /*!< options */
struct ast_flags options;
}; };
static void init_outgoing(struct outgoing *o) static void init_outgoing(struct outgoing *o)