gprs-context: Adding get function for inteface

Added definition of get function to get interface value in
gprs-context
This commit is contained in:
Antara Borwankar 2019-02-15 17:37:15 +05:30 committed by Denis Kenzior
parent d32dc69898
commit 608c683250
1 changed files with 5 additions and 0 deletions

View File

@ -2811,6 +2811,11 @@ enum ofono_gprs_context_type ofono_gprs_context_get_type(
return gc->type;
}
const char *ofono_gprs_context_get_interface(struct ofono_gprs_context *gc)
{
return gc->interface;
}
void ofono_gprs_context_set_interface(struct ofono_gprs_context *gc,
const char *interface)
{