gprs: Implement ofono_gprs_context_get_type

This commit is contained in:
Denis Kenzior 2015-12-13 22:15:51 -06:00
parent fd2073db10
commit 133165b5ca
1 changed files with 6 additions and 0 deletions

View File

@ -2673,6 +2673,12 @@ void ofono_gprs_context_set_type(struct ofono_gprs_context *gc,
gc->type = type;
}
enum ofono_gprs_context_type ofono_gprs_context_get_type(
struct ofono_gprs_context *gc)
{
return gc->type;
}
void ofono_gprs_context_set_interface(struct ofono_gprs_context *gc,
const char *interface)
{