From 0b754835f562585083e61bb7652139f329dc523f Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Fri, 4 Dec 2009 16:21:02 -0600 Subject: [PATCH] Add utility to get the next free call id --- include/voicecall.h | 1 + src/voicecall.c | 11 +++++++++++ 2 files changed, 12 insertions(+) diff --git a/include/voicecall.h b/include/voicecall.h index b8ac45c2..e3ac67bb 100644 --- a/include/voicecall.h +++ b/include/voicecall.h @@ -112,6 +112,7 @@ void ofono_voicecall_remove(struct ofono_voicecall *vc); void ofono_voicecall_set_data(struct ofono_voicecall *vc, void *data); void *ofono_voicecall_get_data(struct ofono_voicecall *vc); +int ofono_voicecall_get_next_callid(struct ofono_voicecall *vc); #ifdef __cplusplus } diff --git a/src/voicecall.c b/src/voicecall.c index c89b2beb..8a73de27 100644 --- a/src/voicecall.c +++ b/src/voicecall.c @@ -1887,3 +1887,14 @@ void *ofono_voicecall_get_data(struct ofono_voicecall *vc) { return vc->driver_data; } + +int ofono_voicecall_get_next_callid(struct ofono_voicecall *vc) +{ + struct ofono_modem *modem; + if (vc == NULL || vc->atom == NULL) + return 0; + + modem = __ofono_atom_get_modem(vc->atom); + + return __ofono_modem_callid_next(modem); +}