[asterisk-commits] rmudgett: trunk r396802 - /trunk/res/parking/parking_bridge_features.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Aug 15 15:09:11 CDT 2013


Author: rmudgett
Date: Thu Aug 15 15:09:10 2013
New Revision: 396802

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=396802
Log:
Parking: Eliminate local channel name hack to get peer channel.

(closes issue ASTERISK-22034)
Reported by: Matt Jordan

Modified:
    trunk/res/parking/parking_bridge_features.c

Modified: trunk/res/parking/parking_bridge_features.c
URL: http://svnview.digium.com/svn/asterisk/trunk/res/parking/parking_bridge_features.c?view=diff&rev=396802&r1=396801&r2=396802
==============================================================================
--- trunk/res/parking/parking_bridge_features.c (original)
+++ trunk/res/parking/parking_bridge_features.c Thu Aug 15 15:09:10 2013
@@ -40,6 +40,7 @@
 #include "asterisk/say.h"
 #include "asterisk/datastore.h"
 #include "asterisk/stasis.h"
+#include "asterisk/core_local.h"
 
 struct parked_subscription_datastore {
 	struct stasis_subscription *parked_subscription;
@@ -188,14 +189,10 @@
  */
 static struct ast_channel *park_local_transfer(struct ast_channel *parker, const char *context, const char *exten)
 {
-	RAII_VAR(struct ast_channel *, parkee_side_2, NULL, ao2_cleanup);
 	char destination[AST_MAX_EXTENSION + AST_MAX_CONTEXT + 1];
 	struct ast_channel *parkee;
+	struct ast_channel *parkee_side_2;
 	int cause;
-
-	/* Used for side_2 hack */
-	char *parkee_name;
-	char *semi_pos;
 
 	/* Fill the variable with the extension and context we want to call */
 	snprintf(destination, sizeof(destination), "%s@%s", exten, context);
@@ -212,26 +209,18 @@
 	ast_connected_line_copy_from_caller(ast_channel_connected(parkee), ast_channel_caller(parker));
 	ast_channel_inherit_variables(parker, parkee);
 	ast_channel_datastore_inherit(parker, parkee);
+	ast_channel_unlock(parker);
+
+	parkee_side_2 = ast_local_get_peer(parkee);
+	ast_assert(parkee_side_2 != NULL);
 	ast_channel_unlock(parkee);
-	ast_channel_unlock(parker);
-
-	/* BUGBUG Use Richard's unreal channel stuff here instead of this hack */
-	parkee_name = ast_strdupa(ast_channel_name(parkee));
-
-	semi_pos = strrchr(parkee_name, ';');
-	if (!semi_pos) {
-		/* There should always be a semicolon present in the string if is used since it's a local channel. */
-		ast_assert(0);
-		return NULL;
-	}
-
-	parkee_name[(semi_pos - parkee_name) + 1] = '2';
-	parkee_side_2 = ast_channel_get_by_name(parkee_name);
 
 	/* We need to have the parker subscribe to the new local channel before hand. */
 	create_parked_subscription(parker, ast_channel_uniqueid(parkee_side_2));
 
 	pbx_builtin_setvar_helper(parkee_side_2, "BLINDTRANSFER", ast_channel_name(parker));
+
+	ast_channel_unref(parkee_side_2);
 
 	/* Since the above worked fine now we actually call it and return the channel */
 	if (ast_call(parkee, destination, 0)) {




More information about the asterisk-commits mailing list