FreeCalypso > hg > themwi-system-sw
view liboutrt/route_e164.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 | 333dbb7ce704 |
children | e4a93ad611f3 |
line wrap: on
line source
/* * In this module we implement routing of calls to E.164 numbers. */ #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <stdio.h> #include <stdint.h> #include <stdlib.h> #include <string.h> #include <strings.h> #include "../include/out_routes.h" extern struct out_routes_header outrt_hdr; extern struct sip_out_dest *outrt_dest_array; extern struct inn_route *outrt_inn_array; route_e164_number(target_num, destp) char *target_num; struct sip_out_dest **destp; { unsigned inn_index; struct inn_route *rec; struct sip_out_dest *dest; char *pp, *tp; for (inn_index = 0; inn_index < outrt_hdr.num_inn; inn_index++) { rec = outrt_inn_array + inn_index; pp = rec->prefix; tp = target_num; while (*pp && *pp == *tp) { pp++; tp++; } if (*pp) continue; dest = outrt_dest_array + rec->sip_dest_id; *destp = dest; return 1; } return 0; }