mirror of
https://github.com/estkme-group/lpac
synced 2025-06-29 00:02:57 +02:00
32 lines
729 B
C
32 lines
729 B
C
#pragma once
|
|
#include "euicc.h"
|
|
#include "es10c.h"
|
|
|
|
struct es8p_metadata
|
|
{
|
|
char iccid[(10 * 2) + 1];
|
|
char *serviceProviderName;
|
|
char *profileName;
|
|
enum es10c_icon_type iconType;
|
|
char *icon;
|
|
enum es10c_profile_class profileClass;
|
|
struct
|
|
{
|
|
char **profileManagementOperation;
|
|
char *notificationAddress;
|
|
} notificationConfigurationInfo;
|
|
struct
|
|
{
|
|
char *mccmnc;
|
|
char *gid1;
|
|
char *gid2;
|
|
} profileOwner;
|
|
struct
|
|
{
|
|
char *dpOid;
|
|
} dpProprietaryData;
|
|
char **profilePolicyRules;
|
|
};
|
|
|
|
int es8p_metadata_parse(struct es8p_metadata **metadata, const char *b64_Metadata);
|
|
void es8p_metadata_free(struct es8p_metadata **stru_metadata);
|