view libutil/mncc_utils.c @ 152:7176dc850d7a

sip-in hold/retr error handling: simply send BYE Because we know that the SIP state is CONNECTED at the time of any such error event, we can call initiate_bye() instead of disconnect_sip(), and thereby get rid of struct gsm_mncc_cause which will never be used in this scenario anyway.
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 11 Oct 2022 16:11:21 -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;
}