mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 10:47:18 +00:00 
			
		
		
		
	res_pjsip: New endpoint option "notify_early_inuse_ringing"
This option was added to control whether to notify dialog-info state 'early' or 'confirmed' on Ringing when already INUSE. The value "yes" is useful for some SIP phones (Cisco SPA) to be able to indicate and pick up ringing devices. ASTERISK-26919 #close Change-Id: Ie050bc30023543c7dfb4365c5be3ce58c738c711
This commit is contained in:
		| @@ -971,6 +971,13 @@ | ||||
| 						will not send the progress details, but immediately will send "200 OK". | ||||
| 					</para></description> | ||||
| 				</configOption> | ||||
| 				<configOption name="notify_early_inuse_ringing" default="no"> | ||||
| 					<synopsis>Whether to notifies dialog-info 'early' on InUse&Ringing state</synopsis> | ||||
| 					<description><para> | ||||
| 						Control whether dialog-info subscriptions get 'early' state | ||||
| 						on Ringing when already INUSE. | ||||
| 					</para></description> | ||||
| 				</configOption> | ||||
| 			</configObject> | ||||
| 			<configObject name="auth"> | ||||
| 				<synopsis>Authentication type</synopsis> | ||||
|   | ||||
| @@ -1940,6 +1940,7 @@ int ast_res_pjsip_initialize_configuration(void) | ||||
| 	ast_sorcery_object_field_register(sip_sorcery, "endpoint", "rtcp_mux", "no", OPT_BOOL_T, 1, FLDSET(struct ast_sip_endpoint, media.rtcp_mux)); | ||||
| 	ast_sorcery_object_field_register(sip_sorcery, "endpoint", "allow_overlap", "yes", OPT_BOOL_T, 1, FLDSET(struct ast_sip_endpoint, allow_overlap)); | ||||
| 	ast_sorcery_object_field_register(sip_sorcery, "endpoint", "refer_blind_progress", "yes", OPT_BOOL_T, 1, FLDSET(struct ast_sip_endpoint, refer_blind_progress)); | ||||
| 	ast_sorcery_object_field_register(sip_sorcery, "endpoint", "notify_early_inuse_ringing", "no", OPT_BOOL_T, 1, FLDSET(struct ast_sip_endpoint, notify_early_inuse_ringing)); | ||||
|  | ||||
| 	if (ast_sip_initialize_sorcery_transport()) { | ||||
| 		ast_log(LOG_ERROR, "Failed to register SIP transport support with sorcery\n"); | ||||
|   | ||||
| @@ -82,7 +82,8 @@ void ast_sip_sanitize_xml(const char *input, char *output, size_t len) | ||||
| } | ||||
|  | ||||
| void ast_sip_presence_exten_state_to_str(int state, char **statestring, char **pidfstate, | ||||
| 			       char **pidfnote, enum ast_sip_pidf_state *local_state) | ||||
| 			       char **pidfnote, enum ast_sip_pidf_state *local_state, | ||||
| 			       unsigned int notify_early_inuse_ringing) | ||||
| { | ||||
| 	switch (state) { | ||||
| 	case AST_EXTENSION_RINGING: | ||||
| @@ -92,7 +93,11 @@ void ast_sip_presence_exten_state_to_str(int state, char **statestring, char **p | ||||
| 		*pidfnote = "Ringing"; | ||||
| 		break; | ||||
| 	case (AST_EXTENSION_INUSE | AST_EXTENSION_RINGING): | ||||
| 		*statestring = "confirmed"; | ||||
| 		if (notify_early_inuse_ringing) { | ||||
| 			*statestring = "early"; | ||||
| 		} else { | ||||
| 			*statestring = "confirmed"; | ||||
| 		} | ||||
| 		*local_state = NOTIFY_INUSE; | ||||
| 		*pidfstate = "busy"; | ||||
| 		*pidfnote = "Ringing"; | ||||
|   | ||||
| @@ -107,6 +107,8 @@ static int dialog_info_generate_body_content(void *body, void *data) | ||||
| 	enum ast_sip_pidf_state local_state; | ||||
| 	unsigned int version; | ||||
| 	char version_str[32], sanitized[PJSIP_MAX_URL_SIZE]; | ||||
| 	struct ast_sip_endpoint *endpoint = NULL; | ||||
| 	unsigned int notify_early_inuse_ringing = 0; | ||||
|  | ||||
| 	if (!local || !state_data->datastores) { | ||||
| 		return -1; | ||||
| @@ -120,8 +122,12 @@ static int dialog_info_generate_body_content(void *body, void *data) | ||||
| 	stripped = ast_strip_quoted(local, "<", ">"); | ||||
| 	ast_sip_sanitize_xml(stripped, sanitized, sizeof(sanitized)); | ||||
|  | ||||
| 	if (state_data->sub && (endpoint = ast_sip_subscription_get_endpoint(state_data->sub))) { | ||||
| 	    notify_early_inuse_ringing = endpoint->notify_early_inuse_ringing; | ||||
| 	    ao2_cleanup(endpoint); | ||||
| 	} | ||||
| 	ast_sip_presence_exten_state_to_str(state_data->exten_state, &statestring, | ||||
| 			&pidfstate, &pidfnote, &local_state); | ||||
| 			&pidfstate, &pidfnote, &local_state, notify_early_inuse_ringing); | ||||
|  | ||||
| 	ast_sip_presence_xml_create_attr(state_data->pool, dialog_info, "xmlns", "urn:ietf:params:xml:ns:dialog-info"); | ||||
|  | ||||
| @@ -133,7 +139,7 @@ static int dialog_info_generate_body_content(void *body, void *data) | ||||
|  | ||||
| 	dialog = ast_sip_presence_xml_create_node(state_data->pool, dialog_info, "dialog"); | ||||
| 	ast_sip_presence_xml_create_attr(state_data->pool, dialog, "id", state_data->exten); | ||||
| 	if (state_data->exten_state == AST_EXTENSION_RINGING) { | ||||
| 	if (!ast_strlen_zero(statestring) && !strcmp(statestring, "early")) { | ||||
| 		ast_sip_presence_xml_create_attr(state_data->pool, dialog, "direction", "recipient"); | ||||
| 	} | ||||
|  | ||||
|   | ||||
| @@ -58,7 +58,7 @@ static int pidf_generate_body_content(void *body, void *data) | ||||
| 	struct ast_sip_exten_state_data *state_data = data; | ||||
|  | ||||
| 	ast_sip_presence_exten_state_to_str(state_data->exten_state, &statestring, | ||||
| 			&pidfstate, &pidfnote, &local_state); | ||||
| 			&pidfstate, &pidfnote, &local_state, 0); | ||||
|  | ||||
| 	if (!pjpidf_pres_add_note(state_data->pool, pres, pj_cstr(¬e, pidfnote))) { | ||||
| 		ast_log(LOG_WARNING, "Unable to add note to PIDF presence\n"); | ||||
|   | ||||
| @@ -80,7 +80,7 @@ static int pidf_supplement_body(void *body, void *data) | ||||
| 	enum ast_sip_pidf_state local_state; | ||||
|  | ||||
| 	ast_sip_presence_exten_state_to_str(state_data->exten_state, &statestring, | ||||
| 			&pidfstate, &pidfnote, &local_state); | ||||
| 			&pidfstate, &pidfnote, &local_state, 0); | ||||
|  | ||||
| 	add_eyebeam(state_data->pool, pres, pidfstate); | ||||
| 	return 0; | ||||
|   | ||||
| @@ -63,7 +63,7 @@ static int xpidf_generate_body_content(void *body, void *data) | ||||
| 	pj_xml_node *msnsubstatus; | ||||
|  | ||||
| 	ast_sip_presence_exten_state_to_str(state_data->exten_state, &statestring, | ||||
| 			&pidfstate, &pidfnote, &local_state); | ||||
| 			&pidfstate, &pidfnote, &local_state, 0); | ||||
|  | ||||
| 	ast_sip_presence_xml_find_node_attr(state_data->pool, pres, "atom", "id", | ||||
| 			&atom, &attr); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user