mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 02:37:10 +00:00 
			
		
		
		
	make the uri parameter used in reply digests more standards compliant in
certain cases by prepending "sip:" or "sips:" to it git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@326681 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
		| @@ -18635,7 +18635,7 @@ static int build_reply_digest(struct sip_pvt *p, int method, char* digest, int d | ||||
| 	struct sip_auth_container *credentials; | ||||
| 
 | ||||
| 	if (!ast_strlen_zero(p->domain)) | ||||
| 		ast_copy_string(uri, p->domain, sizeof(uri)); | ||||
| 		snprintf(uri, sizeof(uri), "%s:%s", p->socket.type == SIP_TRANSPORT_TLS ? "sips" : "sip", p->domain); | ||||
| 	else if (!ast_strlen_zero(p->uri)) | ||||
| 		ast_copy_string(uri, p->uri, sizeof(uri)); | ||||
| 	else | ||||
|   | ||||
		Reference in New Issue
	
	Block a user