Changeset 6035 for pjproject/trunk/pjsip/include/pjsip-ua/sip_regc.h
- Timestamp:
- Jul 1, 2019 7:12:43 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsip-ua/sip_regc.h
r5356 r6035 52 52 53 53 /** Expiration not specified. */ 54 #define PJSIP_REGC_EXPIRATION_NOT_SPECIFIED ((pj_uint32_t)0xFFFFFFFFUL)54 #define PJSIP_REGC_EXPIRATION_NOT_SPECIFIED PJSIP_EXPIRES_NOT_SPECIFIED 55 55 56 56 /** Buffer to hold all contacts. */ … … 75 75 pj_str_t reason; /**< SIP reason phrase received. */ 76 76 pjsip_rx_data *rdata; /**< The complete received response. */ 77 int expiration;/**< Next expiration interval. */ 77 unsigned expiration;/**< Next expiration interval, 78 PJSIP_REGC_EXPIRATION_NOT_SPECIFIED 79 if not specified. */ 78 80 int contact_cnt;/**<Number of contacts in response. */ 79 81 pjsip_contact_hdr *contact[PJSIP_REGC_MAX_CONTACT]; /**< Contacts. */ … … 110 112 pj_bool_t is_busy; /**< Have pending transaction? */ 111 113 pj_bool_t auto_reg; /**< Will register automatically? */ 112 intinterval; /**< Registration interval (seconds). */113 intnext_reg; /**< Time until next registration (seconds). */114 unsigned interval; /**< Registration interval (seconds). */ 115 unsigned next_reg; /**< Time until next registration (seconds). */ 114 116 pjsip_transport *transport; /**< Last transport used. */ 115 117 };
Note: See TracChangeset
for help on using the changeset viewer.