libosmo-sigtran 2.1.0.172-a2b0
Osmocom SIGTRAN library
Loading...
Searching...
No Matches
ss7_internal.h
Go to the documentation of this file.
1#pragma once
2
3/* Internal header used by libosmo-sccp, not available publicly for lib users */
4
5#include <stdbool.h>
6#include <stdint.h>
7#include <osmocom/netif/stream.h>
10
11#include "ss7_instance.h"
12
13#define MAX_PC_STR_LEN 32
14
15extern bool ss7_initialized;
16
17bool ss7_ipv6_sctp_supported(const char *host, bool bind);
18
19uint32_t ss7_pc_full_mask(const struct osmo_ss7_pc_fmt *pc_fmt);
20
22
25int ss7_asp_ipa_srv_conn_rx_cb(struct osmo_stream_srv *conn, int res, struct msgb *msg);
26int ss7_asp_xua_srv_conn_rx_cb(struct osmo_stream_srv *conn, int res, struct msgb *msg);
27int ss7_asp_m3ua_tcp_srv_conn_rx_cb(struct osmo_stream_srv *conn, int res, struct msgb *msg);
28int ss7_asp_xua_srv_conn_closed_cb(struct osmo_stream_srv *srv);
29
30int xua_tcp_segmentation_cb(struct msgb *msg);
31
32/* VTY */
33#define XUA_VAR_STR "(sua|m3ua|ipa)"
osmo_ss7_asp_protocol
Definition osmo_ss7.h:157
int ss7_asp_m3ua_tcp_srv_conn_rx_cb(struct osmo_stream_srv *conn, int res, struct msgb *msg)
Definition ss7_asp.c:1132
int ss7_asp_xua_srv_conn_closed_cb(struct osmo_stream_srv *srv)
Definition ss7_asp.c:1334
struct osmo_ss7_asp * ss7_asp_find_by_socket_addr(int fd, int trans_proto)
Find an ASP definition matching the local+remote IP/PORT of given fd.
Definition ss7_asp.c:630
uint32_t ss7_pc_full_mask(const struct osmo_ss7_pc_fmt *pc_fmt)
Definition ss7.c:94
bool ss7_ipv6_sctp_supported(const char *host, bool bind)
Definition ss7.c:144
int ss7_asp_xua_srv_conn_rx_cb(struct osmo_stream_srv *conn, int res, struct msgb *msg)
Definition ss7_asp.c:1059
int ss7_asp_ipa_srv_conn_rx_cb(struct osmo_stream_srv *conn, int res, struct msgb *msg)
Definition ss7_asp.c:1031
bool ss7_initialized
Definition ss7.c:63
int xua_tcp_segmentation_cb(struct msgb *msg)
Definition ss7_asp.c:1117
bool ss7_asp_protocol_check_trans_proto(enum osmo_ss7_asp_protocol proto, int trans_proto)
Definition ss7_asp.c:166
int ss7_default_trans_proto_for_asp_proto(enum osmo_ss7_asp_protocol proto)
Definition ss7_asp.c:190
Definition ss7_asp.h:42
enum osmo_ss7_asp_protocol proto
Definition ss7_asp.h:102
int trans_proto
The underlaying transport protocol (one of IPPROTO_*)
Definition ss7_asp.h:153
Definition ss7_instance.h:16