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.
15 lines
393 B
15 lines
393 B
#pragma once
|
|
|
|
#include <sofia-sip/sip.h>
|
|
#include <sofia-sip/sdp.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
struct sip_call_leg;
|
|
struct call_leg;
|
|
|
|
bool sdp_get_sdp_mode(const sip_t *sip, sdp_mode_t *mode);
|
|
bool sdp_screen_sdp(const sip_t *sip);
|
|
bool sdp_extract_sdp(struct sip_call_leg *leg, const sip_t *sip, bool any_codec);
|
|
|
|
char *sdp_create_file(struct sip_call_leg *, struct call_leg *, sdp_mode_t mode);
|
|
|