dect
/
libdect
Archived
13
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
libdect/example/pp-access-rights-terminate.c

70 lines
1.6 KiB
C
Raw Normal View History

/*
* DECT PP access rights termination example
*
* Copyright (c) 2010 Patrick McHardy <kaber@trash.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#include <dect/libdect.h>
#include <dect/auth.h>
#include "common.h"
static const struct dect_ipui ipui = {
.put = DECT_IPUI_N,
.pun.n.ipei = {
.emc = 0x0ba8,
.psn = 0xa782a,
}
};
static void mm_access_rights_terminate_cfm(struct dect_handle *dh,
struct dect_mm_endpoint *mme, bool accept,
struct dect_mm_access_rights_terminate_param *param)
{
dect_event_loop_stop();
}
static int mm_access_rights_terminate_req(struct dect_handle *dh,
struct dect_mm_endpoint *mme)
{
struct dect_ie_portable_identity portable_identity;
struct dect_mm_access_rights_terminate_param param = {
.portable_identity = &portable_identity,
};
portable_identity.type = DECT_PORTABLE_ID_TYPE_IPUI;
portable_identity.ipui = ipui;
return dect_mm_access_rights_terminate_req(dh, mme, &param);
}
static struct dect_mm_ops mm_ops = {
.mm_access_rights_terminate_cfm = mm_access_rights_terminate_cfm,
};
static struct dect_ops ops = {
.mm_ops = &mm_ops,
};
int main(int argc, char **argv)
{
struct dect_mm_endpoint *mme;
dect_pp_auth_init(&ops, &ipui);
dect_common_init(&ops, argv[1]);
mme = dect_mm_endpoint_alloc(dh, &ipui);
if (mme == NULL)
pexit("dect_mm_endpoint_alloc");
mm_access_rights_terminate_req(dh, mme);
dect_event_loop();
dect_common_cleanup(dh);
dect_mm_endpoint_destroy(dh, mme);
return 0;
}