Blame src/devices/wwan/nm-service-providers.h

Packit Service 87a54e
/* SPDX-License-Identifier: LGPL-2.1-or-later */
Packit 5756e2
/*
Packit 5756e2
 * Copyright (C) 2019 Red Hat, Inc.
Packit 5756e2
 */
Packit 5756e2
Packit 5756e2
#ifndef __NETWORKMANAGER_SERVICE_PROVIDERS_H__
Packit 5756e2
#define __NETWORKMANAGER_SERVICE_PROVIDERS_H__
Packit 5756e2
Packit Service a1bd4f
typedef void (*NMServiceProvidersGsmApnCallback)(const char *  apn,
Packit Service a1bd4f
                                                 const char *  username,
Packit Service a1bd4f
                                                 const char *  password,
Packit Service a1bd4f
                                                 const char *  gateway,
Packit Service a1bd4f
                                                 const char *  auth_method,
Packit Service a1bd4f
                                                 const GSList *dns,
Packit Service a1bd4f
                                                 GError *      error,
Packit Service a1bd4f
                                                 gpointer      user_data);
Packit 5756e2
Packit Service a1bd4f
void nm_service_providers_find_gsm_apn(const char *                     service_providers,
Packit Service a1bd4f
                                       const char *                     mccmnc,
Packit Service a1bd4f
                                       GCancellable *                   cancellable,
Packit Service a1bd4f
                                       NMServiceProvidersGsmApnCallback callback,
Packit Service a1bd4f
                                       gpointer                         user_data);
Packit 5756e2
Packit 5756e2
#endif /* __NETWORKMANAGER_SERVICE_PROVIDERS_H__ */