diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2021-04-03 21:58:55 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2021-04-29 10:13:22 +0000 |
commit | e4ef8319ec71b673b322279081636c70835f700b (patch) | |
tree | 71edaafed9dc60bf3a11607660bf75387492ed30 /src/mm-base-bearer.h | |
parent | 9fd5aced67d9a5e548f706e62990fa24abda65d5 (diff) |
base-bearer: propagate connected profile id value in the connect result
Implementations that support profile management will provide the
connected profile id value in the MMBearerConnectResult returned to
the base bearer object during the connection attempt.
Diffstat (limited to 'src/mm-base-bearer.h')
-rw-r--r-- | src/mm-base-bearer.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mm-base-bearer.h b/src/mm-base-bearer.h index baa46bb0..6ab58ac4 100644 --- a/src/mm-base-bearer.h +++ b/src/mm-base-bearer.h @@ -49,6 +49,11 @@ void mm_bearer_connect_result_set_multiplexed (MMBearerConnec gboolean multiplexed); gboolean mm_bearer_connect_result_get_multiplexed (MMBearerConnectResult *result); +/* profile id, if known */ +void mm_bearer_connect_result_set_profile_id (MMBearerConnectResult *result, + gint profile_id); +gint mm_bearer_connect_result_get_profile_id (MMBearerConnectResult *result); + /*****************************************************************************/ /* Default timeout values to be used in the steps of a connection or |