Only formatting changes... (tabs to spaces)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@35287 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Olle Johansson 2006-06-21 17:05:38 +00:00
parent 5ff818f995
commit 58c243a6d4
1 changed files with 48 additions and 49 deletions

View File

@ -204,7 +204,7 @@ static int expiry = DEFAULT_EXPIRY;
#define INITIAL_CSEQ 101 /*!< our initial sip sequence number */
/*! Global jitterbuffer configuration - by default, jb is disabled */
/*! \brief Global jitterbuffer configuration - by default, jb is disabled */
static struct ast_jb_conf default_jbconf =
{
.flags = 0,
@ -252,6 +252,12 @@ enum xmittype {
XMIT_UNRELIABLE = 0, /*!< Transmit SIP message without bothering with re-transmits */
};
enum parse_register_result {
PARSE_REGISTER_FAILED,
PARSE_REGISTER_UPDATE,
PARSE_REGISTER_QUERY,
};
enum subscriptiontype {
NONE = 0,
TIMEOUT,
@ -262,13 +268,6 @@ enum subscriptiontype {
MWI_NOTIFICATION
};
enum parse_register_result {
PARSE_REGISTER_FAILED,
PARSE_REGISTER_UPDATE,
PARSE_REGISTER_QUERY,
};
static const struct cfsubscription_types {
enum subscriptiontype type;
const char * const event;