FreeCalypso > hg > themwi-system-sw
view libutil/mncc_utils.c @ 188:6aecee01cf0a
sip-manual-out: add RTP stream continuity analysis
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 17 Mar 2023 01:14:57 -0800 |
parents | dbc0a8677b69 |
children |
line wrap: on
line source
/* simple utility functions for MNCC */ #include <sys/types.h> #include <sys/socket.h> #include <stdio.h> #include <stdint.h> #include <stdlib.h> #include "../include/mncc.h" #include "../include/gsm48_const.h" mncc_set_cause(msg, loc, val) struct gsm_mncc *msg; { msg->fields |= MNCC_F_CAUSE; msg->cause.coding = GSM48_CAUSE_CODING_GSM; msg->cause.location = loc; msg->cause.value = val; }