if (listener->session) {
+ switch_channel_t *channel = switch_core_session_get_channel(listener->session);
+ assert(channel != NULL);
+
if (!strncasecmp(cmd, "connect", 7)) {
snprintf(reply, reply_len, "+OK");
goto done;
snprintf(reply, reply_len, "+OK");
}
goto done;
+ } else if (!strncasecmp(cmd, "getvar", 6)) {
+ char *arg;
+ char *val = "";
+
+ strip_cr(cmd);
+
+ if ((arg = strchr(cmd, ' '))) {
+ *arg++ = '\0';
+ if (!(val = switch_channel_get_variable(channel, arg))) {
+ val = "";
+ }
+
+ }
+ snprintf(reply, reply_len, val);
+ goto done;
} else if (!strncasecmp(cmd, "myevents", 8)) {
listener->event_list[SWITCH_EVENT_CHANNEL_CREATE] = 1;
listener->event_list[SWITCH_EVENT_CHANNEL_DESTROY] = 1;