Changeset 4387 for pjproject/branches/1.x/pjsip/src/pjsua-lib/pjsua_call.c
- Timestamp:
- Feb 27, 2013 10:16:08 AM (12 years ago)
- Location:
- pjproject/branches/1.x
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/1.x
- Property svn:mergeinfo changed
/pjproject/trunk merged: 4212,4217,4232-4233,4235,4238,4266,4283,4288,4308,4312,4330,4354,4364,4366
- Property svn:mergeinfo changed
-
pjproject/branches/1.x/pjsip/src/pjsua-lib/pjsua_call.c
r4067 r4387 34 34 */ 35 35 #define LOCK_CODEC_MAX_RETRY 5 36 37 38 /* 39 * The INFO method. 40 */ 41 const pjsip_method pjsip_info_method = 42 { 43 PJSIP_OTHER_METHOD, 44 { "INFO", 4 } 45 }; 46 36 47 37 48 /* This callback receives notification from invite session when the … … 175 186 pjsip_endpt_add_capability(pjsua_var.endpt, NULL, PJSIP_H_SUPPORTED, 176 187 NULL, 1, &str_norefersub); 188 189 /* Add "INFO" in Allow header, for DTMF and video key frame request. */ 190 pjsip_endpt_add_capability(pjsua_var.endpt, NULL, PJSIP_H_ALLOW, 191 NULL, 1, &pjsip_info_method.name); 177 192 178 193 return status;
Note: See TracChangeset
for help on using the changeset viewer.