Skip to content

Instantly share code, notes, and snippets.

@raman-trantor
raman-trantor / sipserver.c
Created July 20, 2019 06:24
Sample C SIP Server
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <sys/wait.h>