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-detach.c

62 lines
1.4 KiB
C

/*
* DECT PP detach 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 int mm_detach_req(struct dect_handle *dh, struct dect_mm_endpoint *mme)
{
struct dect_ie_portable_identity portable_identity;
struct dect_mm_detach_param param = {
.portable_identity = &portable_identity,
};
portable_identity.type = DECT_PORTABLE_ID_TYPE_IPUI;
portable_identity.ipui = ipui;
return dect_mm_detach_req(dh, mme, &param);
}
static void dl_establish_cfm(struct dect_handle *dh, bool success,
struct dect_data_link *ddl,
const struct dect_mac_conn_params *mcp)
{
struct dect_mm_endpoint *mme;
mme = dect_mm_endpoint_alloc(dh, ddl);
if (mme == NULL)
pexit("dect_mm_endpoint_alloc");
mm_detach_req(dh, mme);
}
static struct dect_lce_ops lce_ops = {
.dl_establish_cfm = dl_establish_cfm,
};
static struct dect_ops ops = {
.lce_ops = &lce_ops,
};
int main(int argc, char **argv)
{
struct dect_mac_conn_params mcp = {};
dect_pp_common_options(argc, argv);
dect_pp_common_init(&ops, cluster, &ipui);
dect_dl_establish_req(dh, &ipui, &mcp);
dect_event_loop();
dect_common_cleanup(dh);
return 0;
}