FreeCalypso > hg > themwi-system-sw
view mtctest/sock_conn.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 | 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); }