strongswan/src/libcharon/plugins/osmo_epdg/osmo_epdg_provider.h

63 lines
1.5 KiB
C

/*
* Copyright (C) 2023 sysmocom - s.f.m.c. GmbH <info@sysmocom.de>
* Author: Alexander Couzens <acouzens@sysmocom.de>
*
* SPDX-License-Identifier: GPL-2.0+
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/
// TODO: check license
/**
* @defgroup osmo_epdg_listener osmo_epdg_listener
* @{ @ingroup osmo_epdg
*/
#ifndef OSMO_EPDG_PROVIDER_H_
#define OSMO_EPDG_PROVIDER_H_
#include <simaka_provider.h>
#include <attributes/attribute_provider.h>
#include "gsup_client.h"
typedef struct osmo_epdg_provider_t osmo_epdg_provider_t;
/**
* SIM provider implementation using a set of AKA functions.
*/
struct osmo_epdg_provider_t {
/**
* Implements simaka_provider_t interface.
*/
simaka_provider_t simaka;
/**
* Implements attribute_provider interface to assign config attributes and virtual ips.
*/
attribute_provider_t attribute;
/**
* Destroy a osmo_epdg_provider_t.
*/
void (*destroy)(osmo_epdg_provider_t *this);
};
/**
* Create a osmo_epdg_provider instance.
*/
osmo_epdg_provider_t *osmo_epdg_provider_create(osmo_epdg_gsup_client_t *gsup);
#endif /** OSMO_EPDG_PROVIDER_H_ @}*/