FreeCalypso > hg > themwi-system-sw
view mtctest/sock_conn.c @ 165:9419fe55824f
themwi-sip-out complete to the point of compiling and linking
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 12 Oct 2022 17:05:45 -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); }