MNCC<->SIP bridge; attaches to OsmoMSC to interface with external SIP VoIP telephony
https://osmocom.org/projects/osmo-sip-conector
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
293 B
23 lines
293 B
![]()
7 years ago
|
#pragma once
|
||
|
|
||
|
#include "mncc.h"
|
||
|
|
||
|
struct app_config {
|
||
|
struct {
|
||
|
const char *local_addr;
|
||
|
int local_port;
|
||
|
|
||
|
const char *remote_addr;
|
||
|
int remote_port;
|
||
|
} sip;
|
||
|
|
||
|
struct {
|
||
|
const char *path;
|
||
|
struct mncc_connection conn;
|
||
|
} mncc;
|
||
|
|
||
|
//int use_imsi_as_id;
|
||
|
};
|
||
|
|
||
|
extern struct app_config g_app;
|