mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-21 01:28:14 +02:00
24 lines
1.1 KiB
C
24 lines
1.1 KiB
C
// SPDX-License-Identifier: LGPL-2.1+
|
|
/*
|
|
* Copyright (C) 2019 Red Hat, Inc.
|
|
*/
|
|
|
|
#ifndef __NETWORKMANAGER_SERVICE_PROVIDERS_H__
|
|
#define __NETWORKMANAGER_SERVICE_PROVIDERS_H__
|
|
|
|
typedef void (*NMServiceProvidersGsmApnCallback) (const char *apn,
|
|
const char *username,
|
|
const char *password,
|
|
const char *gateway,
|
|
const char *auth_method,
|
|
const GSList *dns,
|
|
GError *error,
|
|
gpointer user_data);
|
|
|
|
void nm_service_providers_find_gsm_apn (const char *service_providers,
|
|
const char *mccmnc,
|
|
GCancellable *cancellable,
|
|
NMServiceProvidersGsmApnCallback callback,
|
|
gpointer user_data);
|
|
|
|
#endif /* __NETWORKMANAGER_SERVICE_PROVIDERS_H__ */
|