libosmo-sigtran 2.0.0.52-6412
Osmocom SIGTRAN library
ss7_link.h
Go to the documentation of this file.
1#pragma once
2
3#include <stdint.h>
4#include <osmocom/core/linuxlist.h>
5
6/***********************************************************************
7 * SS7 Linksets
8 ***********************************************************************/
9
10struct osmo_ss7_linkset;
11
17};
18
22 struct {
23 char *name;
25 uint32_t id;
26
28 } cfg;
29};
30
31void ss7_link_destroy(struct osmo_ss7_link *link);
32struct osmo_ss7_link *
33ss7_link_find_or_create(struct osmo_ss7_linkset *lset, uint32_t id);
Definition: ss7_linkset.h:13