libosmo-sigtran 2.0.0.50-b59d
Osmocom SIGTRAN library
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>
9
10#include "ss7_instance.h"
11
12#define MAX_PC_STR_LEN 32
13
14extern bool ss7_initialized;
15
16bool ss7_ipv6_sctp_supported(const char *host, bool bind);
17
18struct osmo_ss7_as *ss7_as_alloc(struct osmo_ss7_instance *inst, const char *name,
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);
osmo_ss7_asp_protocol
Definition: osmo_ss7.h:153
int ss7_asp_m3ua_tcp_srv_conn_rx_cb(struct osmo_stream_srv *conn, int res, struct msgb *msg)
Definition: osmo_ss7_asp.c:889
int ss7_asp_xua_srv_conn_closed_cb(struct osmo_stream_srv *srv)
Definition: osmo_ss7_asp.c:1078
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: osmo_ss7_asp.c:465
bool ss7_ipv6_sctp_supported(const char *host, bool bind)
Definition: osmo_ss7.c:138
int ss7_asp_xua_srv_conn_rx_cb(struct osmo_stream_srv *conn, int res, struct msgb *msg)
Definition: osmo_ss7_asp.c:824
int ss7_asp_ipa_srv_conn_rx_cb(struct osmo_stream_srv *conn, int res, struct msgb *msg)
Definition: osmo_ss7_asp.c:802
bool ss7_initialized
Definition: osmo_ss7.c:62
int xua_tcp_segmentation_cb(struct msgb *msg)
Definition: osmo_ss7_asp.c:874
struct osmo_ss7_as * ss7_as_alloc(struct osmo_ss7_instance *inst, const char *name, enum osmo_ss7_asp_protocol proto)
Allocate an Application Server.
Definition: osmo_ss7_as.c:75
bool ss7_asp_protocol_check_trans_proto(enum osmo_ss7_asp_protocol proto, int trans_proto)
Definition: osmo_ss7_asp.c:135
int ss7_default_trans_proto_for_asp_proto(enum osmo_ss7_asp_protocol proto)
Definition: osmo_ss7_asp.c:159
Definition: ss7_as.h:31
char * name
Definition: ss7_as.h:49
enum osmo_ss7_asp_protocol proto
Definition: ss7_as.h:51
struct osmo_ss7_instance * inst
Definition: ss7_as.h:34
Definition: ss7_asp.h:28
enum osmo_ss7_asp_protocol proto
Definition: ss7_asp.h:69
int trans_proto
The underlaying transport protocol (one of IPPROTO_*)
Definition: ss7_asp.h:96
Definition: ss7_instance.h:20