diff options
author | Denis Kenzior <denis.kenzior@intel.com> | 2009-10-22 17:14:50 -0500 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2009-10-23 17:05:54 -0500 |
commit | bb7945d6aa327cc16ee0dec4f25de16d91d531a8 (patch) | |
tree | 41dbfac34535caa397eefe720fae87332144fcaf /src | |
parent | 729d580692a79b006ca0d12a046dc7f00516b47a (diff) | |
download | ofono-bb7945d6aa327cc16ee0dec4f25de16d91d531a8.tar.bz2 |
Refactor: Split up GPRS into two atoms
Split up GPRS into two atoms: GPRS and GPRS Context. GPRS will handle
the areas of GPRS network registration, basic GPRS capability detection
and attach / detach.
GPRS Context will handle setting up / activating / deactivating the
indicidual contexts.
This will allow us to use the generic GPRS atom for most devices while
customizing the GPRS context accordingly.
Diffstat (limited to 'src')
-rw-r--r-- | src/ofono.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ofono.h b/src/ofono.h index 7f694d7f..aa58a2b1 100644 --- a/src/ofono.h +++ b/src/ofono.h @@ -163,6 +163,7 @@ void __ofono_atom_free(struct ofono_atom *atom); #include <ofono/sim.h> #include <ofono/voicecall.h> #include <ofono/gprs.h> +#include <ofono/gprs-context.h> #include <ofono/ssn.h> |