summaryrefslogtreecommitdiffstats
path: root/src/voicecall.c
AgeCommit message (Collapse)AuthorFilesLines
2009-08-07Use g_source instead of flag for call list changesDenis Kenzior1-7/+10
2009-07-31Don't use g_slist_length to check for empty lists.Andrzej Zaborowski1-3/+3
A glib Anti-pattern according to http://www.burtonini.com/blog
2009-07-29Remove all uses of modem.hDenis Kenzior1-1/+0
2009-07-29Rename modem_add_interface / modem_remove_interfaceDenis Kenzior1-2/+2
Move to ofono_modem_add_interface, ofono_modem_remove_interface and put in ofono/modem.h
2009-07-29Rename modem_alloc_callid, modem_release_callidDenis Kenzior1-3/+3
2009-07-29Rename internal ofono history funcs to __ofonoDenis Kenzior1-2/+2
2009-07-29Get rid of dbus-gsm.hDenis Kenzior1-5/+3
2009-07-29Rename dbus_gsm_dict_append_arrayDenis Kenzior1-2/+2
2009-07-29Rename dbus_gsm_dict_appendDenis Kenzior1-3/+3
2009-07-29Move & Rename PROPERTIES_ARRAY_SIGNATUREDenis Kenzior1-3/+4
2009-07-29Rename dbus_gsm_signal_array_property_changedDenis Kenzior1-2/+2
2009-07-29Rename dbus_gsm_signal_property_changedDenis Kenzior1-3/+3
2009-07-29Rename dbus_gsm error functions to __ofono_errorDenis Kenzior1-63/+63
2009-07-29Get rid of dbus_gsm_free_string_arrayDenis Kenzior1-4/+4
Use g_strfreev instead.
2009-07-29Move & Rename dbus_gsm_connectionDenis Kenzior1-13/+13
Move to ofono/dbus.h ofono_dbus_get_connection
2009-06-17Add call-history driver typeDenis Kenzior1-0/+16
2009-06-12Can't implement Multiparty Hangup without chldDenis Kenzior1-0/+6
2009-06-12Do not use chld=1 on mpty when another heldDenis Kenzior1-9/+20
If we're trying to hangup an active MPTY call, and we have calls on hold we shouldn't use CHLD=1 (release_all_active) since this will have the side-effect of activating the held calls
2009-06-11Fix for multiparty_hangupDenis Kenzior1-2/+2
Due to the use of an invalid structure, release_all_active was being called instead of release_all_held
2009-05-28Squash gcc warning about uninitialized use of vDenis Kenzior1-1/+1
2009-05-27Delete the repeated calling of voicecall_createMinjun Li1-1/+1
2009-05-27Fix erroneous check in voicecall_busy to set_udubMinjun Li1-1/+1
The not implemented check should be checking for the presence of the set_udub function, not the presence of the release_specific function
2009-05-26Create ofono_phone_number structDenis Kenzior1-33/+26
Creates a new structure in driver.h called ofono_phone_number. This is meant to replace const char *number, int number_type arguments everywhere. Fix up all existing code to use this structure instead.
2009-05-12Add an API for a CSSI/CSSU notifications.Andrzej Zaborowski1-11/+1
2009-05-12Remove some other unused variablesDenis Kenzior1-6/+4
2009-05-05Add implementation of telephony daemonDenis Kenzior1-0/+1684