summaryrefslogtreecommitdiffstats
path: root/gisi/modem.c
AgeCommit message (Collapse)AuthorFilesLines
2011-10-10gisi: Update copyright informationMarcel Holtmann1-1/+1
2011-04-28gisi: log normal responses in a less confusing wayPekka Pessi1-1/+2
2011-03-18gisi: Fix PN_SIM reachability check decodingAki Niemi1-3/+3
2011-02-07gisi: Refactor indication subscriptionsAki Niemi1-7/+20
Handle different message types for IND subscriptions based on the presence of the GISI_MODEM_FLAG_USE_LEGACY_SUBSCRIBE flag. This enables building modem plugins for modems that only support one or the other available IND types. Based on patches from: Jessica Nilsson <jessica.j.nilsson@stericsson.com>
2011-02-07gisi: Minor style fixesAki Niemi1-2/+2
2011-02-07gisi: Refactor modem to use remote deviceAki Niemi1-11/+21
2011-02-07gisi: Add new API for setting modem remote deviceAki Niemi1-0/+22
2011-02-07gisi: Add checks for NULLAki Niemi1-1/+9
2011-02-07gisi: Add API for setting modem flagsAki Niemi1-0/+17
2011-01-18gisi: remove g_isi_pending_from_msg()Pekka Pessi1-9/+0
2011-01-18gisi: simplify pending managementPekka Pessi1-0/+63
Client or server mark their pending objects with the function g_isi_pending_set_owner(). When client or server get destroyed or reset the pending objects are removed with the function g_isi_remove_pending_by_owner(). As a client or server always uses only a particular resource, all the pending objects are conveniently stored into a single list.
2011-01-18gisi: remove before notifyPekka Pessi1-24/+45
Just in case, remove pending operations before calling notifys. The notify function can remove client, service or modem.
2011-01-07gisi: Add API for one-shot sending of messagesAki Niemi1-0/+23
2010-12-23gisi: Don't go over 80 charactersDenis Kenzior1-1/+2
2010-12-23gisi: fix use of unitialised variableAndrzej Zaborowski1-1/+2
Set no msg.version if it's not available.
2010-12-22gisi: Minor style fixesAki Niemi1-3/+6
2010-12-22gisi: Add message tracing and debugging supportAki Niemi1-18/+86
2010-12-22gisi: Explicit compare to NULLAki Niemi1-29/+29
2010-12-22gisi: Remove forward declarationAki Niemi1-2/+0
2010-12-22gisi: modify reachability checkMika Liljeberg1-13/+11
Always cache server object ID and ISI version.
2010-12-22gisi: store user data in GIsiModemMika Liljeberg1-0/+14
2010-12-22gisi: Remove forward referencePekka Pessi1-95/+94
2010-12-22gisi: Use direct hashing from resource IDPekka Pessi1-42/+37
Do not call modem_subs_update() after modem has already been destroyed, but do it earlier, already after destroying all services.
2010-12-22gisi: Split indication to use separate socketAki Niemi1-21/+42
Some resources send INDs with non-zero unique transaction ID, which can conflict with pending RESPs. To fix this, we use two sockets, one dedicated for INDs, and one dedicated to REQs, NTFs and RESPs.
2010-12-22gisi: Redesign ISI message processingAki Niemi1-5/+956
This new modem API supercedes the old client and server APIs. It properly queues resource subscriptions and version queries, as well as caches reachability status for a given resource. Also, this is a complete redesign of ISI message handling, adding another layer of abstraction to multiplexing operations to a given modem resource.
2010-10-14gisi: Fix copyright and license boilerplateAki Niemi1-13/+16
2010-04-21gisi: move g_isi_modem_by_name to separate fileAki Niemi1-0/+36
This fixes build warnings that resulted from conflicts between linux/if.h and net/if.h.