view libutil/nanp_valid.c @ 176:f5c4f9a764be

osmo-bts-rtp-bfi.patch: updated version This version of the osmo-bts patch sets the TAF bit correctly in generated RTP BFI packets, correctly generates RTP BFI in the case of FACCH stealing on sysmoBTS, and removes one EFR-specific bogon from sysmoBTS code.
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 17 Feb 2023 18:27:03 -0800
parents b1c364729a93
children 81958b35f74d
line wrap: on
line source

/*
 * Utility functions for NANP number validation.
 */

is_nanp_valid_prefix(s)
	char *s;
{
	/* validate NPA part */
	if (s[0] < '2')
		return(0);
	if (s[1] == '1' && s[2] == '1')
		return(0);
	if (s[1] == '9')
		return(0);
	/* validate exchange part */
	if (s[3] < '2')
		return(0);
	if (s[4] == '1' && s[5] == '1')
		return(0);
	/* all checks passed */
	return(1);
}