view mtctest/sock_conn.c @ 124:7e04d28fae8b

sip-in: default use-100rel to no BulkVS servers act badly when we send a reliable 180 Ringing response to an incoming call, even though they advertise 100rel support in the Supported header in the INVITE packet, and we probably won't be implementing 100rel for outbound because doing per-the-spec PRACK as a UAC is just too burdensome. Therefore, we need to consider 100rel extension as not-really-supported in themwi-system-sw.
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 01 Oct 2022 15:54:50 -0800
parents c08d81fa8117
children
line wrap: on
line source

/*
 * In this module we implement our connection to the MNCC daemon's
 * mtcall socket.
 */

#include <sys/types.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include "../include/mncc.h"

static char mtcall_socket_pathname[] = "/var/gsm/mtcall_socket";

int mtc_socket;

connect_mtc_socket()
{
	struct sockaddr_un sa;
	unsigned sa_len;
	int rc;

	mtc_socket = socket(AF_UNIX, SOCK_SEQPACKET, 0);
	if (mtc_socket < 0) {
		perror("socket(AF_UNIX, SOCK_SEQPACKET, 0)");
		exit(1);
	}
	fill_sockaddr_un(mtcall_socket_pathname, &sa, &sa_len);
	rc = connect(mtc_socket, (struct sockaddr *) &sa, sa_len);
	if (rc < 0) {
		perror(mtcall_socket_pathname);
		exit(1);
	}
	return(0);
}

void
mtc_socket_select()
{
	union mncc_msg msg;
	int rc;

	rc = recv(mtc_socket, &msg, sizeof msg, 0);
	if (rc < 0) {
		perror("read from socket");
		exit(1);
	}
	if (rc < 4) {
		fprintf(stderr, "short read from socket: %d bytes\n", rc);
		exit(1);
	}
	msg_from_mncc(&msg, rc);
}

send_mncc_to_gsm(msg, msglen)
	union mncc_msg *msg;
	unsigned msglen;
{
	return send(mtc_socket, msg, msglen, 0);
}