summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorzuul <zuul@gerrit.asterisk.org>2016-07-13 07:28:31 -0500
committerGerrit Code Review <gerrit2@gerrit.digium.api>2016-07-13 07:28:31 -0500
commit8cea01ab1b3e07282487d7efe1888f290cc4280a (patch)
treec55f57bdc50621a0814ca6bbedd4871b54b11939 /include
parent08f5f10f8f05b34f64c22545cb34b2eabbee7f0e (diff)
parent97b4c7a5b42eb84eaeaf9ec3f524de40e1d7fd74 (diff)
Merge "res_pjsip: Fix statsd regression." into 13
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/res_pjsip.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/asterisk/res_pjsip.h b/include/asterisk/res_pjsip.h
index de223de01..962ddb11b 100644
--- a/include/asterisk/res_pjsip.h
+++ b/include/asterisk/res_pjsip.h
@@ -271,7 +271,6 @@ enum ast_sip_contact_status_type {
UNKNOWN,
CREATED,
REMOVED,
- UPDATED,
};
/*!
@@ -294,6 +293,8 @@ struct ast_sip_contact_status {
char *aor;
/*! The original contact's URI */
char *uri;
+ /*! TRUE if the contact was refreshed. e.g., re-registered */
+ unsigned int refresh:1;
};
/*!