diff options
-rw-r--r-- | src/voicecall.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/voicecall.c b/src/voicecall.c index b420071c..3fe590d4 100644 --- a/src/voicecall.c +++ b/src/voicecall.c @@ -2795,6 +2795,13 @@ static void emulator_chld_cb(struct ofono_emulator *em, vc->driver->create_multiparty(vc, emulator_generic_cb, em); return; + case 4: + if (vc->driver->transfer == NULL) + goto fail; + + vc->driver->transfer(vc, + emulator_generic_cb, em); + return; default: goto fail; } @@ -2828,6 +2835,13 @@ static void emulator_chld_cb(struct ofono_emulator *em, *info++ = '3'; } + if (vc->driver->transfer) { + if (info - buf > 6) + *info++ = ','; + + *info++ = '4'; + } + *info++ = '\0'; ofono_emulator_send_info(em, buf, TRUE); |