Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-02-27 | stk: Add Duration structure | Denis Kenzior | 1 | -0/+10 | |
2010-02-27 | stk: Add icon identifier structure | Denis Kenzior | 1 | -2/+10 | |
2010-02-27 | Add duration type enum | Denis Kenzior | 1 | -0/+6 | |
2010-02-26 | Fix: Simplify write-again logic | Denis Kenzior | 1 | -6/+3 | |
2010-02-26 | Fix: Don't allocate buffers if we don't need to | Denis Kenzior | 1 | -1/+6 | |
2010-02-26 | Add write server response into non-blocking IO | Zhenhua Zhang | 1 | -0/+66 | |
Write server response into non-blocking GIOChannel when we have G_IO_OUT signal. | |||||
2010-02-26 | Add write buffer queue for non-blocking write | Zhenhua Zhang | 1 | -10/+95 | |
The head of the queue is the data to be written, the tail is the free buffer to cache data into. If the tail of queue is full, allocate a new free buffer and append it at the tail. | |||||
2010-02-26 | Add define for read and write buffer size | Zhenhua Zhang | 1 | -1/+3 | |
2010-02-26 | Do not trigger user disconnect at g_at_shutdown | Zhenhua Zhang | 1 | -14/+28 | |
Similar to gatchat, introduce read_watcher_destroy_notify and do not trigger user disconnect at g_at_shutdown. Delay destroy of gatserver until read_watcher is destroyed. | |||||
2010-02-24 | doc: Add 'Name' property under 'Modem' interface. | João Paulo Rechi Vita | 1 | -0/+4 | |
2010-02-24 | Test: Show number being dialed | João Paulo Rechi Vita | 1 | -1/+1 | |
2010-02-24 | Test: Show id of the modem being enabled/disabled | João Paulo Rechi Vita | 2 | -0/+2 | |
2010-02-23 | Update unit test for USAT display text command | Denis Kenzior | 2 | -3/+195 | |
2010-02-23 | Add basic support for USAT/CAT proactive commands | Denis Kenzior | 2 | -1/+195 | |
Only display_text with mandatory fields is currently supported. | |||||
2010-02-23 | Add COMPREHENSION TLV iterator utilities | Denis Kenzior | 2 | -0/+138 | |
2010-02-23 | Add Simple TLV iterator utilities | Denis Kenzior | 2 | -0/+105 | |
2010-02-23 | Fix: EFspdi parsing | Denis Kenzior | 1 | -3/+11 | |
EFspdi is a nested BER-TLV structure. The outside BER-TLV has the tag A3, and the inside contains the PLMN list TLV with tag 0x80. | |||||
2010-02-23 | Rewrite ber_tlv_find_tag to use ber_tlv iterator | Denis Kenzior | 1 | -30/+9 | |
2010-02-23 | Update gitignore | Denis Kenzior | 1 | -0/+1 | |
2010-02-23 | Move from header to implementation | Denis Kenzior | 2 | -2/+2 | |
2010-02-23 | Add BER-TLV iterator unit test | Denis Kenzior | 1 | -0/+49 | |
2010-02-23 | Add BER-TLV iterator utilities | Denis Kenzior | 2 | -0/+198 | |
2010-02-18 | Add STK device identity enum | Denis Kenzior | 1 | -0/+9 | |
2010-02-18 | Add stub for unit test for Sim Toolkit utils | Denis Kenzior | 2 | -1/+52 | |
2010-02-18 | Add enumeration for STK Comprehension TLV objects | Denis Kenzior | 1 | -0/+97 | |
2010-02-17 | Add Sim Toolkit Envelope type enum | Denis Kenzior | 1 | -0/+15 | |
2010-02-17 | Add Sim Toolkit Proactive Command enum | Denis Kenzior | 1 | -0/+44 | |
2010-02-17 | Add stubs files for Sim Toolkit Utilities | Denis Kenzior | 3 | -1/+54 | |
2010-02-17 | Fix: a pending call was leaking in check_service | Vinicius Costa Gomes | 1 | -0/+2 | |
This was triggering an assert inside libdbus when the timeout inside the leaking pending call expired. The assert said that we were trying to remove an nonexistent timeout. | |||||
2010-02-16 | Refactor: ussd user response | Denis Kenzior | 1 | -14/+7 | |
When the user sends a response, the network can still continue the dialog, it is not a final response and we cannot transition to an idle state when the command finishes. Instead we set it back to a special state and treat subsequent network responses as unsolicited. | |||||
2010-02-16 | Rename: ussd-api to supplementaryservices-api | Denis Kenzior | 1 | -0/+0 | |
2010-02-16 | Cleanup: Minor API tweaks for USSD | Denis Kenzior | 2 | -12/+12 | |
2010-02-16 | Subscribe to USSD signals in test script. | Andrzej Zaborowski | 1 | -1/+20 | |
2010-02-16 | Handle network-initiated ussd requests. | Andrzej Zaborowski | 2 | -10/+216 | |
This adds the methods on the D-bus interface to allow the client to handle USSD requests from the network, according to 22.090. Unfortunately this document is not clear on every point and some details can't be implemented. This includes reporting unsupported request to the network, unsupported language, ME busy etc, because there isn't an AT command for that. | |||||
2010-02-15 | hfp: add watch to trigger HUP of the file descriptor | Gustavo F. Padovan | 1 | -0/+10 | |
2010-02-15 | hfp: remove modems if bluetoothd exits unexpectedly | Gustavo F. Padovan | 1 | -2/+25 | |
2010-02-15 | Fix: Use g_dbus_emit_signal in call-barring,meter | Andrzej Zaborowski | 2 | -21/+4 | |
2010-02-15 | hfp: remove duplicated ofono_modem_set_powered | Gustavo F. Padovan | 1 | -2/+0 | |
2010-02-15 | Cleanup: Get rid of USSD_FLAG_PENDING | Denis Kenzior | 1 | -24/+10 | |
2010-02-12 | Release 0.18 | Marcel Holtmann | 2 | -1/+9 | |
2010-02-12 | Fix: Unregistering the agent in disable is wrong | Denis Kenzior | 2 | -3/+6 | |
What we really want to do here is set a flag that the agent has not been released yet. If this is the case we should send the Disconnect call on disable. | |||||
2010-02-12 | Add hfp/ prefix to the path for HFP modems | Denis Kenzior | 1 | -1/+2 | |
2010-02-12 | Fix: Trivial mistake | Denis Kenzior | 1 | -3/+0 | |
2010-02-12 | Add support for alias changes | Denis Kenzior | 1 | -5/+29 | |
2010-02-12 | Set modem name from Bluetooth device alias | Denis Kenzior | 1 | -3/+6 | |
2010-02-12 | Add support for modem names | Denis Kenzior | 2 | -0/+27 | |
2010-02-12 | Fix: Use persistent paths for hfp modems | Denis Kenzior | 1 | -19/+54 | |
2010-02-12 | Fix: Store the modem in the uuid hash | Denis Kenzior | 1 | -2/+2 | |
The modem is more useful to store than the path, particularly once we track Aliases | |||||
2010-02-12 | Refactor the UUIDs property changed path | Denis Kenzior | 1 | -29/+36 | |
2010-02-12 | Don't leak user_data in send_method_call_with_reply | Denis Kenzior | 1 | -5/+16 | |