bluez5: backend-native: Link with ModemManager Modem3GPP object

The Modem3GPP provides information about the network the modem is registered
to like the operator name and roaming status.
This commit is contained in:
Frédéric Danis 2022-09-16 14:43:37 +02:00 committed by Wim Taymans
parent 13f0a0755e
commit 275d2bc603
3 changed files with 116 additions and 3 deletions

View file

@ -30,6 +30,8 @@
struct mm_ops {
void (*set_modem_service)(bool available, void *user_data);
void (*set_modem_signal_strength)(unsigned int strength, void *user_data);
void (*set_modem_operator_name)(const char *name, void *user_data);
void (*set_modem_roaming)(bool is_roaming, void *user_data);
};
#ifdef HAVE_BLUEZ_5_BACKEND_NATIVE_MM